Skip to content

Instantly share code, notes, and snippets.

@lennonjesus
Last active December 1, 2021 08:22
Show Gist options
  • Save lennonjesus/abee9d907cf9090d5a3f6c675abd6e89 to your computer and use it in GitHub Desktop.
Save lennonjesus/abee9d907cf9090d5a3f6c675abd6e89 to your computer and use it in GitHub Desktop.
CloudReady ChromeOS Manual Installation Via the Cmd Line

CloudReady ChromeOS Manual Installation Via the Cmd Line

The following walkthrough for a cmd line installation may be useful to you if you are having issues with the UI button "Install CloudReady".

The instructions were (mostly) written up by Jaymes Driver. Thanks Jaymes!

  • After creating your Installer stick, boot from USB
  • When the first screen comes up and asks you to select your network, press Ctrl + Alt + F2.
  • You will find yourself at a command line.
  • the username is: chronos
  • the password is: chrome
  • FIRST, determine your install destination by running sudo fdisk -l
  • You can look at the device sizes to find out which device is your HDD (usually sda)
  • To install, type the following commands:
cd /usr/sbin
sudo chromeos-install --dst /dev/sdX
  • ATENTION: replace "sdX" above with the letter of your drive

  • NOTE: If the above cmd fails, try

sudo chromeos-install --skip_src_removable --dst /dev/sdX
  • Type the password listed above (chrome)
  • You will be asked to confirm the source and destination - don't proceed if you aren't sure (or unconcerned with wiping any device)
  • When sure, type Y and press enter.
  • Now you wait. You may see some errors or warnings - don't worry unless everything fails
  • As far as I can tell, they can be ignored. Maybe someone can shed some light on the error and the cause. Maybe even a prevention/fix.
  • The process will take 5-10 minutes.
  • When the message Please shutdown, remove the USB device, cross your fingers, and reboot. appears, press CTRL + ALT + F1 to get back to the Welcome screen.
  • Click Shutdown, remove your USB stick, and reboot.
  • Marvel in your awesome, you are now !

** OBS: Dualboot installs need to be done via the GUI **

Source: https://neverware.zendesk.com/hc/en-us/articles/213131287-Manual-Installation-Via-the-Cmd-Line

More: http://www.neverware.com/installation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment