Last active
August 29, 2015 14:11
-
-
Save komuw/965513bcb241f74c6975 to your computer and use it in GitHub Desktop.
install ubuntu via crouton in a chromebook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. open a browser and go to https://goo.gl/fd3zc, that will download crouton | |
2. hit Ctrl+alt+T and then type shell and press enter | |
$ shell | |
3. install ubuntu via | |
$ sudo sh ~/Downloads/crouton -r trusty -t xfce | |
#that will install ubuntu 14.04 with xfce desktop environment | |
4. to list available versions: | |
$ sudo sh ~/Downloads/crouton -r list | |
5. to list available desktop environments: | |
$ sudo sh ~/Downloads/crouton -t list | |
6. delete all installed chroots | |
$ sudo delete-chroot -ad | |
7. delete/uninstall a particular chroot/ubuntu version | |
$ sudo delete-chroot trusty | |
8. go to: https://github.com/dnschneid/crouton for more. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment