BootFromUSB

Differences between revisions 1 and 2
Revision 1 as of 2006-06-10 02:26:45
Size: 10925
Editor: host81-156-114-170
Comment:
Revision 2 as of 2006-06-19 16:06:56
Size: 55
Editor: 127
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
This page explains how to boot an Ubuntu system which is installed on a USB device when the computer does not support USB booting

= Introduction =

If you want to install Ubuntu onto a USB drive, such as a large "USB stick" or an external hard drive it is often impossible to boot this system on slightly older computers. This guide explains how to create a bootable CD which will load the USB system.

= How It Works =

PCs use a system called the BIOS (Basic Input/Output System) to start the machine. Even though a few features have been added to many BIOSs over the last 25 years the BIOS system is still extremely limited, as it is part of the "bootup" procedure (so called because the computer has to "pull itself up by it's boot straps", a feat which is impossible in real life but aptly describes how a simple electrical current supplied with a power switch can start a chain reaction of activating ever more complex electronics until the computer system is up and running. The BIOS is key to this, so it cannot be very complex). There have been several alternatives for the BIOS system such as the Amiga Kickstart, which uses up to half a megabyte of ROM chips to store large parts of the operating system (although this makes booting Linux on an Amiga slightly more difficult since we do not want the AmigaOS which is in the Kickstart chips) and more recently the EFI system used in Intel based Apple Macs, but for now the PC system is stuck with the BIOS, and this guide is for those of you who's "extra features" don't extend to USB support. So, how do we get around these inherent limitations in the computer's boot system? The answer is that we can't. Instead we must add another layer to the bootup procedure by adding a piece of software which the BIOS can access, and which in turn can access the USB drive for us. Luckily there is already an excellent piece of software which can understand USB devices and it's name is Linux. As long as there is a Linux kernel on a device which the BIOS can understand then we can let this Linux kernel take over to do what we want.

A stripped down Linux kernel will fit onto a high density (1.44MB) floppy disk, but the standard Ubuntu kernel doesn't quite. Also, the standard Ubuntu kernel does not have all of the drivers needed to boot a USB drive, thus these extra driver modules must be put into the "initial RAM disk" image (abbreviated to "initrd") which gets copied into the RAM during boot to enable the kernel to access the extra modules it contains. Most PCs can boot from a CDROM drive, and writable CDs can store more than enough data to allow Linux and an initrd to fit comfortably (that's how "live CDs" work) so we will use this method to boot. Since the kernel and initrd get copied into RAM during boot and run from there (the RAM based initrd is not needed once the kernel has access to the main drive anyway) it is not necessary for the CD to be in the drive after booting has finished, so if you only have one CDROM drive it will not be tied up like it would with a live CD.

So now we know how Ubuntu can be booted from CD into a USB drive in theory, it is time to put it into practice.

= Setting It Up =

You can install Ubuntu using a regular CD or DVD, since you will be booting from discs which contain a Linux kernel and all of the driver modules needed to acces your USB drive. The only difference you may notice is that your drive will be called "/dev/sda" instead of the regular "/dev/hda" which you may find in many guides.

Once the installation has finished using the disc you must reboot into your new USB system. This is where you need a bootable CD. It is easiest to make such a CD from another Ubuntu system, slightly harder from a different Linux system, and quite hard on a Windows system. It is usually easiest to boot from an Ubuntu Live CD.

To build your own boot CD you will need to mount your system from within the Live CD (this is describe here [:Mount]). Once that is done it is time to add the needed modules to your initrd. To do this you must run:
{{{
gksudo gedit /wherever_you_have_mounted_your_system/etc/mkinitramfs/modules
}}}
Which will open the text editor with that file. You need to add these lines to the end of the file:
{{{
### This is a reminder that these modules have been added to allow a CD to boot a USB drive
usbcore
sd_mod
ehci_hcd
uhci_hcd
ohci_hcd
usb-storage
scsi_mod
}}}
(It is always a good idea to put comments in any manually changed configurations so you don't get confused later) Now save the file and exit gedit.

There is one small problem before we carry on. USB drives take a few seconds before they are set up properly by Linux, and your boot would fail before your drive becomes accessible. To sort this we need to tell the initrd to wait a few seconds before it gets carried away and fails. You can do this by running:
{{{
gksudo gedit /wherever_you_have_mounted_your_system/etc/mkinitramfs/initramfs.conf
}}}
Now to this you should add at the very top the lines:
{{{
### This makes the bootup wait until any USB drives are ready
WAIT=15
}}}
Then save the file and exit the text editor.

Now that we have corrected the initrd's setup we must use this setup to rebuild the initrd using our new guidelines. To do this you must enter your system by running:
{{{
sudo chroot /wherever_you_have_mounted_your_system
}}}
Now that you are in your system you can rebuild your initrd by reconfiguring Linux with the command
{{{
dpkg-reconfigure linux-image-<kernelversion>
}}}
Where <kernelversion> is the version of Linux you have installed that you wish to reconfigure. The default for Dapper is 2.6.15-23-386, but you can see all of the possible versions with (from within your system):
{{{
apt-cache search linux-image-2.6
}}}
Or
{{{
ls /lib/modules
}}}
If the reconfigure command was successful there should be some lines about rebuilding initrd, updating GRUB, etc. Now you can find your new initrd and matching kernel in /boot of your system (that is /wherever_you_mounted_your_system/boot in the Live CD's system) and they are called initrd.img-<kernelversion> and vmlinuz-<kernelversion>. You should exit from the chroot now by pressing ctrl-d. Now you need to copy these files, along with a configuration file for the bootloader GRUB, to the Live CD's home folder with the commands:
{{{
cp /wherever_your_system_is_mounted/boot/initrd.img-<kernelversion> ~
cp /wherever_your_system_is_mounted/boot/vmlinuz-<kernelversion> ~
cp /wherever_your_system_is_mounted/boot/grub/menu.lst ~
}}}
Now that you have a kernel which can boot your USB drive it is time to put it on a bootable CD. You will need to download [ftp://alpha.gnu.org/gnu/grub/grub-0.97.tar.gz this archive of the GRUB source code] and extract it to obtain the "stage2_eltorito" file inside. Now that you have the needed files we can make your CD.

Make a folder in the Live CD's home folder called "bootcd", then inside there make another called "boot" and inside there one called "grub". Now copy the stage2_eltorito and menu.lst to this new "grub" folder and copy the vmlinuz and initrd files into the "boot" folder above it. Rename the vmlinuz-<version> file to simply "vmlinuz" and the initrd.img-<version> file to simply "initrd.img" (this means you won't have to change your configuration later to point to any new filenames) Edit the menu.lst file with the text editor and look at the bottom where the actual OS entries are. Delete what is there and make two new entries (replace /dev/sda1 with your root partition if this is not correct):
{{{
title Ubuntu
root (cd)
kernel /boot/vmlinuz root=/dev/sda1 ro quiet splash
initrd /boot/initrd.img
boot

title Ubuntu Recovery Mode
root (cd)
kernel /boot/vmlinuz root=/dev/sda1 ro single
initrd /boot/initrd.img
boot
}}}
By default the top entry will be booted. You can change some of the other options here if you want a hidden menu or a different timeout before the default entry is booted (never set this to zero or you will not be able to enter recovery mode). That is the entire contents of your bootable CD, so now we have to build it. Open a terminal (by default it will be in the home folder) and run (all on one line):
{{{
sudo mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table -o UbuntuBootCDForUSB.iso bootcd
}}}
You should now have a CD image called UbuntuBootCDForUSB.iso which you can write to a recordable CD using many common CD writing programs such as the one built into the Nautilus file manager (Ubuntu's default file manager), GnomeBaker, k3b, Nero and many more. If you don't have your CDR/W drive accessible (because you are running a LiveCD in it) then you can copy the CD image to /wherever_you_have_mounted_your_system to keep it safely stored on a real drive. You should also copy over the "bootcd" folder. This can be done with:
{{{
sudo cp UbuntuBootCDForUSB.iso /wherever_you_have_mounted_your_system
sudo cp -r bootcd /wherever_you_have_mounted_your_system
}}}
They will now be accessible in your / directory (move them out of there once your system is set up as this is an important directory and should not be cluttered). You can save the iso file to a FAT formatted USB stick (obviously not one you have just set up with Linux) to transfer the CD image to Windows where it can be written by Nero.

Now you just have to boot off the CD you have written whilst your USB drive is plugged in and (depending on how you set up GRUB) you will be sent into Ubuntu's boot procedure. (Notice the "Waiting for root filesystem" line? You did that!). If GRUB gives an error then you can edit the bootup lines by pressing "e" with the right entry highlighted in the menu.

= Disadvantages Of This System =

Whenever Ubuntu's kernel is updated you will not notice. This is because you will still be running the older kernel from your CD. You can fix this easily by replacing the "vmlinuz" and "initrd.img" files by the new ones in the "bootcd/boot" folder and making a new image by rerunning the above "sudo mkisofs" command (new kernels will automatically contain our modifications since we added the changes to the system's configuration files) After writing the new image to disc you can use it to boot into your new kernel (I would not recommend using a single CDRW disc and overwriting it everytime as you will be in trouble if it doesn't work. Instead I suggest using 2 CDRW discs and updating one. Once that updated disc has been tested and it works then you should update the second disc)

= See Also =
[http://www.gnu.org/software/grub/manual/html_node/Making-a-GRUB-bootable-CD-ROM.html Building a bootable GRUB CD] - This is GNU GRUB's official documentation which I used when writing this guide
----
CategoryDocumentation
#REFRESH 0 http://help.ubuntu.com/community/BootFromUSB

BootFromUSB (last edited 2008-08-06 16:39:57 by localhost)