OS images for USB disks
Images on USB storage devices
To try out an image, simply download the appropriate .img.bz2 file, e.g.,
olpc-stream-development-42-20060714_1709-rpm-ext3.img.bz2
unzip it, and transfer it to a USB storage device via dd, e.g.,
# bunzip2 olpc-stream-development-42-20060714_1709-rpm-ext3.img.bz2 # dd if=olpc-stream-development-42-20060714_1709-rpm-ext3.img of=/dev/sdb bs=512 # sync
Remember to
- Do this as the super user / root
- Replace /dev/sdb with the device file of the USB storage device. The images do contain a partition table, so do not write to a partition such as /dev/sdb1
- Make sure any old partitions from the storage device is unmounted.
- The USB storage device must be 512MB or bigger. All existing data on it will be wiped.
Now you should be able to boot the OLPC operating system off the USB storage device.
Installing in an existing partition on a USB storage device
Useful notes:
- Make sure your root partition is ext3, not ext2
- Label for root partition needs to be OLPCRoot (e.g: "tune2fs -L OLPCRoot /dev/sdb1" to set the label on an existing partition)
If you don't want to completely wipe the USB stick or hard drive, you can also try transferring the partition within the image file into an existing partition on your storage device. Using dd to transfer the image directly onto the device completely replaces the existing data and partition table. Instead, you can use loopback mounts to copy the partition across and then set-up grub on the device.
For example, I have a 200GB USB hard disk partitioned into 3 partitions:
* sdb1 - 10GB (for the root filesystem) * sdb2 - 1.5GB swap partition * sdb3 - the rest as a storage partition.
Retrieve and unzip the appropriate OLPC image file as above. This file contains a partition table, which describes exactly one partition. What we want to do is to mount that partition (using a loopback device) and copy the contents to the USB hard disk, then make that hard disk bootable.
First, we need to setup the image file on a loopback device so we can inspect that partition table:
# losetup /dev/loop0 olpc-stream-development-59-20060808_1153-rpm-ext3.img
Now, use fdisk to look at the contents:
# fdisk -l -u /dev/loop0 Disk /dev/loop0: 504 MB, 504626688 bytes 16 heads, 32 sectors/track, 1924 cylinders, total 985599 sectors Units = sectors of 1 * 512 = 512 bytes Device Boot Start End Blocks Id System /dev/loop0p1 32 985599 492784 83 Linux
In this case, the partition we want starts at sector 32, and each sector is 512 bytes = 16384 bytes into the image file. Now, we can set up a second loopback device to load this partition and mount it:
# losetup /dev/loop1 -o 16384 olpc-stream-development-59-20060808_1153-rpm-ext3.img # mount -text3 /dev/loop1 /media/tmp/
Now, copy the files to your USB hard disk:
# cd /media/tmp; find | cpio -p --unconditional --preserve-modification-time --dot /media/usbdisk
And finally, we need to set up grub on the disk to boot from the first partition. We do this using the GRUB shell. Note that in this example, we're installing on (hd1), because the external disk is the 2nd disk connected to the system. When it boots on the OLPC board, it will be the primary disk and grub will treat it as (hd0)
# grub Probing devices to guess BIOS drives. This may take a long time. # grub> root (hd1) root (hd1) Filesystem type unknown, using whole disk # grub> root (hd1,0) root (hd1,0) Filesystem type is ext2fs, partition type 0x83 grub> setup (hd1) setup (hd1) Checking if "/boot/grub/stage1" exists... yes Checking if "/boot/grub/stage2" exists... yes Checking if "/boot/grub/e2fs_stage1_5" exists... yes Running "embed /boot/grub/e2fs_stage1_5 (hd1)"... 15 sectors are embedded. succeeded Running "install /boot/grub/stage1 (hd1) (hd1)1+15 p (hd1,0)/boot/grub/stage2 /boot/grub/menu.lst"... succeeded Done. # grub> ^C #
- When I tried booting from this drive on the OLPC, GRUB started but didn't load its configuration correctly - just dropping me into the grub shell instead. I needed to run 'root' and 'setup' again on the actual board to get GRUB to set itself up right. If anyone knows how to avoid this step, please fix the instructions.