Creating a bootable flash drive in Chrome OS

CommanderLiamTHX

In Runtime
Messages
133
Location
required
Hello, so I am trying to put Chrubuntu on my Chromebook, so I chose Lubuntu, because it is small and can fit in the 9GB of space I gave it. I only have access to a Chromebook at the moment, so I was wondering: Is it possible to burn an ISO to a thumb drive is Chrome using the terminal or something? I have an Acer C720 and the .iso is in the Downloads folder, if that helps.
 
I'd recommend this alternative method - it's a little more "hacker-ish" (you're basically tricking your computer into thinking the USB stick is a CD-ROM,) but it's the simplest method ever to make your bootable USB drive.

Okay, first off, we're going to enter Crosh - ChrOme SHell is what I think it stands for. Anyway, it's basically useless, except to open up the "real" Shell.
Press CTRL-ALT-T to open it up, then type shell and press Enter. You'll now be presented with a $ with (maybe) some text before it. If you see this, congrats. You're in. If not, reread the instructions and try again.

Once you've gotten the Shell open, type cd /home/downloads (assuming you saved the ISO to your Downloads folder.)
Now, we need to figure out what Device your USB stick is. It's usually /dev/sdb, if it's your computer's only USB stick plugged in, but you're nervous, type fdisk -l - it'll tell you.

(NOTE: THE FOLLOWING COMMAND WILL WIPE ANYTHING CURRENTLY ON THE USB DRIVE. IF YOU HAVE ANYTHING VALUABLE ON IT, PLEASE REMOVE IT BEFORE CONTINUING.)
Once you've figure out what your USB drive is, type:

dd if=lubuntu-12.*-desktop*.iso of=/dev/sdb
(except, edit the *'s to complete the filename.)
This will "burn" the Lubuntu disk image to your USB stick, as if it were a CD. In fact, it basically turns the USB stick into a CD, albeit one that runs significantly faster than your average optical drive.

When it's finished, reboot your computer and spam F12 while it's booting up - it should ask you what you want to boot from. Choose USB CD-ROM or something similar. Ta-da, you have just booted from the USB stick! If that didn't work, reboot and try a different F# key or perhaps a different boot device. There's not really much to screw up here, unless you enter the BIOS settings and break something (but that's highly unlikely. ;)

Just remember that after you have done this to the USB stick, you can't use it as a USB stick until you reformat it. Normal Windows utilities can't do this, use something like Gparted instead. Create a new partition table (if it asks, use msdos,) and then create a new partition with the Type as FAT32.

I got this from the UBUNTU help page, but it will also work with Ubuntu.
 
Back
Top Bottom