About BOOTING LINUX FROM USB DRIVE. Modern computers can boot from USB storage like disks and sticks. You may even try to boot from a digital camera if you like. This article shows how to install Linux on a USB disk so that you can boot from it.
UNetBootIn
UNetBootIn allows you to install a Linux of your choice to a USB disk. You will need internet connectivity or a CD/DVD image to be converted.The manual approach
Boot your favorite Linux
This has been tested with SUSE Linux 10.0 and Ubuntu 7.04.Connect the USB disk
Attach the USB disk and type dmesg. At the end of the messages, you will find something like "Attached SCSI device to /dev/sda". Then you know your USB disk's device name is /dev/sda. In this tutorial, we assume the device name is /dev/sda.Partition the USB disk
fdisk /dev/sdaIn this tutorial, we will assume you create a partition /dev/sda1 for your root ( / ) directory.
Format the USB disk
mkfs -t ext3 /dev/sda1
Clone your system
Copy over all files from / to your USB disk. See also Cloning.mkdir -p /mnt/sda1 mount /dev/sda1 /mnt/sda1 cd / tar -c $(ls -1 | grep -Ev "proc|sys|tmp|media|mnt") | (cd /mnt/sda1; tar -xv)You should know that you will need the /dev folder to create the ramdisk later. You can also use tar -cl (local filesystems only), but that might exclude your /boot partition.
Make your USB disk bootable
Here are two possibilities for making the disk bootable, it is not unusual that one fails. Try the uppermost first.Possibility (1)
$ cd /mnt/sda1 $ chroot . $ mount /proc $ grub-install /dev/sda $ exitYou may have to mknod /dev/sda and /dev/sda1 in the chroot-environment!
Possibility (2)
$ grub-install --recheck --root-directory=/mnt/sda1 /dev/sda
Probing devices to guess BIOS drives. This may take a long time.
Installation finished. No error reported.
This is the contents of the device map /mnt/sda1/boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install'.
(fd0) /dev/fd0
(hd0) /dev/hda
(hd1) /dev/hdb
(hd2) /dev/sda
Test if your USB disk is bootable
Test if your USB disk is bootable with a computer emulator:qemu /dev/sda
TroubleShooting
The file /boot/grub/stage1 not read correctly
- Symptome is that grub-install fails with the message
The file /boot/grub/stage1 not read correctly
- Reason can be that your partition type is incorrect, e.g. like this:
$ fdisk -l
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 19456 156280288+ c W95 FAT32 (LBA)
- Solution can be to correct your partition type to 83 (Linux) using fdisk.
Edit your initial ramdisk
The initial ramdisk (initrd) must contain the modules needed to load usb storage. We will use mkinitrd to rebuild your initial ramdisk. First, change to your system on the USB disk:cd /mnt/sda1 chroot . mount /procNow have a look at the drivers that are loaded by the initial ramdisk.
SUSE
For SUSE, your drivers file is /etc/sysconfig/kernel. You will find a line starting with INITRD_MODULES= in /etc/sysconfig/kernel. It should look like this:INITRD_MODULES="jbd reiserfs ext3 usbcore usb_storage scsi_mod sd_mod uhci_hcd ehci-hcd sbp2 sr_mod"it can also contain more modules. Verify this line exists, then, create the initial ramdisk:
mkinitrd
Ubuntu
For Ubuntu, your drivers file is /etc/modules. It should look at least like this (it can also contain more modules):# /etc/modules: kernel modules to load at boot time. # # This file contains the names of kernel modules that should be loaded # at boot time, one per line. Lines beginning with "#" are ignored. fuse lp usb_storage uhci_hcd usbcore usbhid sr_mod sd_mod scsi_modAfter you verified the file exists, create your initrd with the command:
mkinitramfs -o /boot/initrd.img
Use a unique device name
If you now boot from your USB disk, it might be that it appears under another name than /dev/sda. To circumvent this problem, we will now use the disk's unique ID instead of /dev/sda. Tryhwinfo --partitionYou will get a line similar to the following:
Device Files: /dev/sda1, /dev/disk/by-id/usb-CompanyXXXXXX,_Inc._USB_Mass_Stor age_Device_100-part1, /dev/disk/by-path/pci-0000:00:1d.7-usb-0:3:1.0-scsi-0:0:0: 0-part1, /dev/disk/by-uuid/84ff6790-9b69-4401-9ba2-43d044af1d30, /dev/disk/by-la bel/WhateverNow you know your partition is not only accessible via /dev/sda1, but also via /dev/disk/by-uuid/84ff6790-9b69-4401-9ba2-43d044af1d30.
/etc/fstab
You can now edit the fstab on your USB disk:kwrite /mnt/sda1/etc/fstabthere is one line for the mountpoint /, maybe:
/dev/sda1 / ext2 defaults 1 1In our example, you would change this line to
/dev/disk/by-uuid/84ff6790-9b69-4401-9ba2-43d044af1d30 / ext2 defaults 1 1
/boot/grub/menu.lst
In /mnt/sda1/boot/grub/menu.lst, you will find some lines telling the kernel where to find the root (/) file system, maybe:kernel /boot/vmlinuz-2.6.20-16-generic root=/dev/sda1 ro quiet splashnot to boot from the wrong partition, you can also replace them:
kernel /boot/vmlinuz-2.6.20-16-generic root=UUID=84ff6790-9b69-4401-9ba2-43d044af1d30 ro quiet splash
Try booting from your disk
If there are problems, continue with TroubleShooting.TroubleShooting
GRUB - nothing else
- When booting from USB, I get a line saying
GRUBnothing else.
- This can be a problem with your device map. Keep in mind that, when booting from USB, your USB disk corresponds to (hd0), the first harddisk. grub-install will tell you where its device map is - try correcting it.
Error 17 after boot menu
- After choosing an item from the grub menu, I get a line saying
Error 17: Cannot mount selected partition
- most probably, your device order has changed. For example, if you installed linux from CD and your IDE harddisk was device 0, it may now be device 1 after Booting from USB. In this case change
root (hd1,1)to
root (hd0,1)Please note that 1 is simply an example for a partition, it may also be any other number.
Error 17 before boot menu
- Instead of getting the grub menu, I get a line saying nothing else but
Error 17
- most probably, your device order has changed and grub searches its menu (stage) on the wrong disk. You will have to do grub-install again.
Waiting for /dev/sda to appear
- After selecting the boot entry in the grub menu, you get some lines of messages then the boot process stops with the message
Waiting for /dev/sda to appear
- your USB disk is recognized and supported by your BIOS, but your initrd's drivers do not recognize it. You will have to edit your initial ramdisk to contain the correct drivers, as discussed under initrd.
No bootable partition in table
- After starting the computer, you get a line saying
No bootable partition in table
- you do not have a partition that is marked as bootable. Use fdisk's "a" command to set the bootable flag of /dev/sda1, about like this:
tweedleburg:~ # fdisk /dev/sda
The number of cylinders for this disk is set to 7870.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command (m for help): p
Disk /dev/sda: 16.2 GB, 16248733696 bytes
64 heads, 63 sectors/track, 7870 cylinders
Units = cylinders of 4032 * 512 = 2064384 bytes
Disk identifier: 0x97c02927
Device Boot Start End Blocks Id System
/dev/sda1 3 7871 15863872 83 Linux
Command (m for help): m
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
Command (m for help): a
Partition number (1-4): 1
Command (m for help): p
Disk /dev/sda: 16.2 GB, 16248733696 bytes
64 heads, 63 sectors/track, 7870 cylinders
Units = cylinders of 4032 * 512 = 2064384 bytes
Disk identifier: 0x97c02927
Device Boot Start End Blocks Id System
/dev/sda1 * 3 7871 15863872 83 Linux
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
tweedleburg:~ #
Tidak ada komentar:
Posting Komentar