Skip to content

Instantly share code, notes, and snippets.

@plembo
Last active May 8, 2019 15:58
Show Gist options
  • Save plembo/7fdf16fd6b4c76622b13d6bc2083d3d7 to your computer and use it in GitHub Desktop.
Save plembo/7fdf16fd6b4c76622b13d6bc2083d3d7 to your computer and use it in GitHub Desktop.
New Chromebook Setup

Setup a new Chromebook

Model used: Dell Inspiron 3181 (11" screen)

  • Run through standard configuration routine, linking to Google account.
  • Install Android apps: Gmail, Google Calendar, Bitwarden.
  • Install Linux Beta, share SD Card with Linux.
  • Set hostname using "hostnamectl set-hostname mycb" ("mycb" is your chosen Linux host name).
  • Update Linux packages with "apt update" and "apt upgrade".
  • In Linux terminal, edit /etc/dhcp/dhclient.conf to add:
option host-name "mycb.example.com";
supercede domain-name "example.com";
supercede domain-search "example.com";

Where "example.com" is your domain.

  • Edit /etc/hosts to add your hostname to the localhost line:
127.0.0.1 localhost mycb.example.com mycb
  • Restart Linix terminal.
  • Download .deb for vscode and save to SD Card.
  • Install vscode .deb with apt in Linux terminal.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment