Created
May 14, 2011 22:19
-
-
Save jonbalbarin/972698 to your computer and use it in GitHub Desktop.
switching between ubuntu and chromeos on the cr48
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
#set ubuntu as default | |
function bootUBUNTU { | |
sudo cgpt add -i 6 -P 5 -S 1 /dev/sda | |
} | |
#set chromeos as default | |
function bootCHROMEOS { | |
sudo cgpt add -i 6 -P 0 -S 1 /dev/sda | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment