Difference between revisions of "Sugar on a Stick/Linux"
Jump to navigation
Jump to search
m |
(added loop mount instructions) |
||
Line 27: | Line 27: | ||
* Plug in a 1-GB or larger USB stick into your computer. | * Plug in a 1-GB or larger USB stick into your computer. | ||
* Download the installation script: http://bit.ly/livecd-iso-to-disk.<br>(You will execute this script several steps below.)<br>See [[fedora:Livecd-iso-to-disk.pod]] for usage details. | * Download the installation script: http://bit.ly/livecd-iso-to-disk.<br>(You will execute this script several steps below.)<br>See [[fedora:Livecd-iso-to-disk.pod]] for usage details. | ||
− | * Check the USB device node name. In the example below, the '''s'''torage '''d'''evice is /dev/sdb and filesystem partition on that device is /dev/sdb1: | + | ** Alternatively, loop mount the 'SoaS.iso' image to reach the onboard livecd-iso-to-disk script: |
+ | **: {{Code|losetup /dev/loop1 /path/to/Fedora-13-i686-Live-SoaS.iso}} | ||
+ | **: {{Code|mkdir /mnt/soas/}} | ||
+ | **: {{Code|mount /dev/loop1 /mnt/soas/}} | ||
+ | **: {{Code|losetup /dev/loop2 /mnt/soas/LiveOS/squashfs.img}} | ||
+ | **: {{Code|mkdir /mnt/squash/}} | ||
+ | **: {{Code|mount /dev/loop2 /mnt/squash/}} | ||
+ | **: {{Code|losetup /dev/loop3 /mnt/squash/LiveOS/ext3fs.img}} | ||
+ | **: {{Code|mkdir /mnt/ext3fs/}} | ||
+ | **: {{Code|mount /dev/loop3 /mnt/ext3fs/}} | ||
+ | **:: Later below, substitute {{Code|/mnt/ext3fs/LiveOS/livecd-iso-to-disk}} for the shell script name (the file is already executable). | ||
+ | |||
+ | * Check the USB device node name on your system. In the example below, the '''s'''torage '''d'''evice is /dev/sdb and filesystem partition on that device is /dev/sdb1: | ||
: {{Code|df -Th}} | : {{Code|df -Th}} | ||
<pre> | <pre> | ||
Line 67: | Line 79: | ||
: {{Code|chmod +x livecd-iso-to-disk.sh}} | : {{Code|chmod +x livecd-iso-to-disk.sh}} | ||
* Run it as root, making sure to pass the correct USB device and to set overlay and home size appropriately, depending on the stick size. | * Run it as root, making sure to pass the correct USB device and to set overlay and home size appropriately, depending on the stick size. | ||
− | : {{Code|sudo ./livecd-iso-to-disk.sh --reset-mbr --overlay-size-mb 300 --home-size-mb 200 --delete-home --unencrypted-home /path/to/.iso | + | : {{Code|sudo ./livecd-iso-to-disk.sh --reset-mbr --overlay-size-mb 300 --home-size-mb 200 --delete-home --unencrypted-home /path/to/SoaS.iso /dev/sd''b1''}} |
:: '''Note:''' With the soas-2-blueberry.iso, leave out the 3 options for a separate persistent home. The script will complete successfully, but the new installation startup process will have trouble finding the home folder and fail to complete. | :: '''Note:''' With the soas-2-blueberry.iso, leave out the 3 options for a separate persistent home. The script will complete successfully, but the new installation startup process will have trouble finding the home folder and fail to complete. | ||
Revision as of 14:27, 24 September 2010
Introduction
This page provides additional detail for installing Mirabelle, the most stable, released version of Sugar on a Stick (SoaS), available at this download site, onto a USB/SD flash storage device using GNU/Linux.
- To explore a variety of experimental options for putting a Sugar image on a USB or SD flash drive under GNU/Linux, see the following pages:
- SoaS test builds | OLPC XO-1 | openSUSE | Trisquel | VirtualBox | VMware | non-compressed Fedora | Live USB: (all known portable Sugar distributions)
If you have questions, trouble, or feedback, please let us know on the discussion page. If you can improve these instructions, please edit the page and do so!
- See this reference for more background details: fedora:How to create and use Live USB#Graphical Method - Windows or Fedora
Put SoaS onto a stick using Fedora or Ubuntu
This is known to work in Fedora and Ubuntu.
First, download a SoaS-Mirabelle .iso
image from http://spins.fedoraproject.org/soas/#downloads, then return here.
- (A program called UNetBootin available at http://unetbootin.sourceforge.net/ does all this magic for you... or you can do the magic yourself:)
- Make sure you have the syslinux package installed on the operating system that you will use to prepare the Live USB image. It is recommended that you also have the isomd5sum package installed. The cryptsetup package is another option potentially used by the "livecd-iso-to-disk" installation script. (On Ubuntu,
sudo apt-get install syslinux isomd5sum cryptsetup
will install the packages. They are also available through the Synaptic Package Manager.)
- (On Gentoo, one needs to uncomment 'SAMPLE FILE' in /etc/mtools/mtools.conf to make syslinux work.)
- syslinux is needed to set up booting on the FAT file system of the USB disc or Live CD.
- isomd5sum is needed for the recommended verification step, which checks that the .iso file is complete after its travels. If there is a problem with the .iso file, the script will exit and provide a failure message. The verification step can be bypassed by using the
--noverify
option. - cryptsetup is only needed for the option to provide password protection and encryption for the persistent /home/liveuser folder. It is not necessary if one applies the recommended
--unencrypted-home
option. The--unencrypted-home
option is preferred because the reduced overhead improves robustness with the compressed SquashFS file system employed by the Live USB deployment.
- Plug in a 1-GB or larger USB stick into your computer.
- Download the installation script: http://bit.ly/livecd-iso-to-disk.
(You will execute this script several steps below.)
See fedora:Livecd-iso-to-disk.pod for usage details.- Alternatively, loop mount the 'SoaS.iso' image to reach the onboard livecd-iso-to-disk script:
losetup /dev/loop1 /path/to/Fedora-13-i686-Live-SoaS.iso
mkdir /mnt/soas/
mount /dev/loop1 /mnt/soas/
losetup /dev/loop2 /mnt/soas/LiveOS/squashfs.img
mkdir /mnt/squash/
mount /dev/loop2 /mnt/squash/
losetup /dev/loop3 /mnt/squash/LiveOS/ext3fs.img
mkdir /mnt/ext3fs/
mount /dev/loop3 /mnt/ext3fs/
- Later below, substitute
/mnt/ext3fs/LiveOS/livecd-iso-to-disk
for the shell script name (the file is already executable).
- Later below, substitute
- Alternatively, loop mount the 'SoaS.iso' image to reach the onboard livecd-iso-to-disk script:
- Check the USB device node name on your system. In the example below, the storage device is /dev/sdb and filesystem partition on that device is /dev/sdb1:
df -Th
$ df -Th Filesystem Type Size Used Avail Use% Mounted on /dev/sda1 ext4 18G 5.6G 12G 33% / tmpfs tmpfs 1.6G 536K 1.6G 1% /dev/shm /dev/sdb1 vfat 996M 0 996M 0% /media/MyUSBdiscMountpoint
- Unmount the drive,
sudo umount /media/MyUSBdiscMountpoint
- Then check to see that the partition is marked as bootable,
sudo fdisk -l
<----that's a lowercase letter 'L' for the list option.
You should see output that looks like this:
Disk /dev/sdb: 1047 MB, 1047265280 bytes 255 heads, 63 sectors/track, 127 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x0008325f . Device Boot Start End Blocks Id System /dev/sdb1 * 1 127 1020096 6 FAT16
The '*' under the Boot column is what you want to see.
- If not, then
- For Ubuntu 8.10, menu: System -> Administration -> Partition Editor (GParted).
- Select your USB device (/dev/sdb for the rest of these instructions),
- then your partition (/dev/sdb1),
- then menu: Partition -> Manage Flags,
- check the boot box,
- and Close to mark the partition as bootable.
- For Fedora,
parted /dev/sdb
toggle 1 boot
quit
- Change mode to make the script executable.
chmod +x livecd-iso-to-disk.sh
- Run it as root, making sure to pass the correct USB device and to set overlay and home size appropriately, depending on the stick size.
sudo ./livecd-iso-to-disk.sh --reset-mbr --overlay-size-mb 300 --home-size-mb 200 --delete-home --unencrypted-home /path/to/SoaS.iso /dev/sdb1
- Note: With the soas-2-blueberry.iso, leave out the 3 options for a separate persistent home. The script will complete successfully, but the new installation startup process will have trouble finding the home folder and fail to complete.
- Normally, the livecd-iso-to-disk installation has the advantage over the liveusb-creator installation method by allowing a persistent /home/liveuser folder with the --home-size-mb NNN option. This feature would allow you to update the OS image while keeping the user files (by running the script against your existing installation but leaving out the --home-size-mb NNN option).
- The
--delete-home
option is used to avoid an error message while requesting both a new home (with--home-size-mb
) and a persistent home (indirectly with--unencrypted-home
). You wouldn't use the --delete-home option on an upgrade of the operation system only.
- The
- Normally, the livecd-iso-to-disk installation has the advantage over the liveusb-creator installation method by allowing a persistent /home/liveuser folder with the --home-size-mb NNN option. This feature would allow you to update the OS image while keeping the user files (by running the script against your existing installation but leaving out the --home-size-mb NNN option).
- Depending on the size of your USB stick, you may have to decrease
--overlay-size-mb
and--home-size-mb
values (for example, for a 1-GB stick, use 300 for the overlay and 200 for the home folder).- If you have sufficient capacity on your target device, and format it with an ext[234] filesystem to overcome the 2048-MB fat32 file size limit, you may avoid the SquashFS compression by including the
--skipcompress
option in the script command line.
- Watch out for errors in the output of the script, the script seems to ignore them! (and say all is fine on the last line).
- If you have sufficient capacity on your target device, and format it with an ext[234] filesystem to overcome the 2048-MB fat32 file size limit, you may avoid the SquashFS compression by including the
livecd-iso-to-disk.sh transcript
$ sudo ./livecd-iso-to-disk.sh --reset-mbr --overlay-size-mb 300 --home-size-mb 200 --delete-home --unencrypted-home /mnt/VMs/Fedora-13-x86_64-Live-SoaS.iso /dev/sdb1 Verifying image... /mnt/VMs/Fedora-13-x86_64-Live-SoaS.iso: 7bb43cb6237802347e06d636b5974796 Fragment sums: 5cb46db2dd7545c7154d99616eaa942ca515fb37188c34cf82564a498b68 Fragment count: 20 Press [Esc] to abort check. Checking: 100.0% The media check is complete, the result is: PASS. It is OK to use this media. Copying live image to USB stick Updating boot config file Initializing persistent overlay file 300+0 records in 300+0 records out 314572800 bytes (315 MB) copied, 35.3334 s, 8.9 MB/s Initializing persistent /home 200+0 records in 200+0 records out 209715200 bytes (210 MB) copied, 24.2014 s, 8.7 MB/s Formatting unencrypted /home mke2fs 1.41.12 (17-May-2010) Filesystem label= OS type: Linux Block size=1024 (log=0) Fragment size=1024 (log=0) Stride=0 blocks, Stripe width=0 blocks 51200 inodes, 204800 blocks 10240 blocks (5.00%) reserved for the super user First data block=1 Maximum filesystem blocks=67371008 25 block groups 8192 blocks per group, 8192 fragments per group 2048 inodes per group Superblock backups stored on blocks: 8193, 24577, 40961, 57345, 73729 Writing inode tables: done Creating journal (4096 blocks): done Writing superblocks and filesystem accounting information: done This filesystem will be automatically checked every 33 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override. tune2fs 1.41.12 (17-May-2010) Setting maximal mount count to -1 Setting interval between checks to 0 seconds Installing boot loader USB stick set up as live image!
What's next?
After you've created your stick, it's time to boot your stick and test it out. Please also report your observations.