LiveUSB

From Gentoo Wiki
(Redirected from LiveUSB/Guide)
Jump to:navigation Jump to:search
See also
For those looking to learn how to use Catalyst to build LiveCDs should check the Custom media image article.

This article explains how to create a Gentoo LiveUSB or, in other words, how to emulate a x86 or amd64 Gentoo LiveCD using a USB drive. This is particularly useful for installing Gentoo on a modern laptop with no CD-ROM drive.

Although the instructions found in this document aim at emulating a Gentoo LiveCD using a USB drive, they should work for any arbitrary block device as long as the device names are adjusted accordingly.

Many other methods available on different operating systems should work for creating bootable LiveUSB drives for Gentoo installation.

Note
This article covers creation of a simple bootable drive, from an image file, that can be useful for installing Gentoo to a hard drive, for example. For instructions on installation of a complete, functional, Gentoo system onto a USB drive, see the Install Gentoo on a bootable USB stick article.
Note
unetbootin provides an easy, GUI, alternative to create a bootable USB sticks from a bootable CD image, in Gentoo.

Prerequisites

In order to boot a LiveUSB, the following will be needed:

  • Bootable USB drive with enough space to write the image to. When using the Gentoo Minimal Installation CD, at least 1GB. (Generally, the bigger the better.)
  • A computer with support for


Access to the following is needed for creating a LiveUSB:

  • A computer running Gentoo (or alternatively another Linux distribution)
  • A computer running Microsoft Windows with the appropriate software (see the Windows section below)
  • A computer able to run the dd command (e.g. MacOS)

Choosing an installation media for Gentoo

The architecture appropriate Gentoo Minimal Installation CD iso can be downloaded and used to install from a command line interface, as a "light" installation option. There is also a Gentoo LiveGUI USB Image which can provide a more ergonomic option (e.g. open the handbook in another window and copy paste commands with a middle mouse click to a terminal emulator, use a GUI IRC client for support, etc.).

When downloading, adjust the architecture (x86, amd64, arm, sparc, etc.) portion of the URL to match the system's CPU. Gentoo mirrors are here.

The Gentoo bootable images are by no means the only thing that can be used to install Gentoo - almost any modern LiveCD should work. Use whatever feels the most comfortable.

Note
Gentoo Minimal Installation CD images support both UEFI and legacy boot.

Convert the ISO image to hybrid mode

Most modern LiveCD's, like Gentoo are already in hybrid mode. If the LiveUSB does not boot, then it may be that the image will have to be converted to hybrid mode. Hybrid mode means image will enable the ISO to boot from both a CD-ROM device or a USB drive.

Convert the ISO with the following command:

root #isohybrid filename.iso

The isohybrid command comes as part of the sys-boot/syslinux package.

Using dd to write the ISO image to a USB drive

Warning
The dd command will wipe all data from the destination drive. Always backup all important data.

When using the Gentoo Installation CD ISOs, it is sufficient to directly copy the ISO contents onto the USB device. The dd command can be used to accomplish this. For instance, assuming the USB device is at /dev/sdc:

root #dd if=/path/to/image.iso of=/dev/sdc bs=8192k status=progress; sync

The command will exit without any errors when it completes the transfer successfully. Depending on the size of the ISO image and the speed of the USB device, this process could some time. Be patient!

Once complete, the USB drive should be bootable.

On Windows, the dd command is also available through various projects, such as Cygwin, GNUWin32, or Chrysocome.

The remainder of this document explains how to setup a vfat partition that is writable using the GRUB bootloader.

Creating bootable LiveUSB drives from Linux systems

Manually preparing a LiveUSB drive

Note
This method works at least with current Gentoo LiveGUI images.

Preparing the USB drive

Partitioning the drive
Warning
These instructions will erase all data from the USB drive. Make sure to backup any pre-existing data first.
Important
This article assumes that the /dev/sdc device node corresponds to the USB drive. If other SCSI-like devices exist be sure to use the correct device node to prevent data loss!

Create a FAT16 partition on the USB drive and mark it bootable using fdisk. An example partitioning scheme can be seen below:

Note
If the USB drive is 4GB or larger, use partition type b (W95 FAT32).
root #fdisk -l /dev/sdc
Disk /dev/sdc: 2063 MB, 2063597056 bytes
255 heads, 63 sectors/track, 250 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
  
   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1   *           1         250     2008124+   6  FAT16

A Gentoo LiveGUI image doesn't need more than 4GB. On a larger drive, a second partion could be created for the remaining space, and formatted when needed later.

root #fdisk -l /dev/sdc
Disk /dev/sdc: 14.92 GiB, 16025387008 bytes, 31299584 sectors
Disk model: USB Flash Disk  
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos

Device     Boot   Start      End  Sectors  Size Id Type
/dev/sdc1  *       2048  8390655  8388608    4G  b W95 FAT32
/dev/sdc2       8390656 31299583 22908928 10.9G 83 Linux
Creating the filesystem

Create a FAT16 filesystem on the USB drive using mkfs.fat:

Note
If the drive is 4GB or larger, use -F 32 to create a FAT32 filesystem.
root #emerge --ask sys-fs/dosfstools
root #mkfs.fat -n LiveUSB -F 16 /dev/sdc1
mkfs.fat 3.0.22 (2013-07-19)

Grub will use "LiveUSB" as root label.

Copying the files

Mounting the Gentoo boot image

Download a Gentoo boot image for the system's architecture from a the main site's download page and mount the ISO image on /mnt/cdrom as shown below:

root #mkdir -p /mnt/cdrom
root #mount -o loop,ro -t iso9660 /path/to/isofile.iso /mnt/cdrom

Adjust the /path/to/isofile.iso as necessary to the location of the downloaded boot image ISO.

Note
If a "Could not find any loop device" error message is displayed when mounting the ISO, a kernel recompile may be required. Verify the Loopback device support option in the kernel configuration has been enabled. For more information on kernel configuration see the kernel configuration article.
Mounting the LiveUSB

Mount the newly formatted USB drive on /mnt/usb as shown below:

root #mkdir -p /mnt/usb
root #mount -t vfat /dev/sdc1 /mnt/usb
Copying the files

Copy the files from the boot image to the LiveUSB:

root #cp -r /mnt/cdrom/* /mnt/usb

Unmount the ISO image:

root #umount /mnt/cdrom
Modify the bootloader configuration

Change all root labels to "LiveUSB", so the partition can be found (4x in this example).

FILE /mnt/usb/boot/grub/grub.cfg
set default=0
set gfxpayload=keep
set timeout=10
insmod all_video

menuentry 'Boot LiveCD (kernel: gentoo)' --class gnu-linux --class os {
        search --no-floppy --set=root -l LiveUSB
        linux /boot/gentoo nodhcp secureconsole root=live:CDLABEL=LiveUSB rd.live.dir=/ rd.live.squashimg=image.squashfs cdroot
        initrd /boot/gentoo.igz
}

menuentry 'Boot LiveCD (kernel: gentoo) (cached)' --class gnu-linux --class os {
        search --no-floppy --set=root -l LiveUSB
        linux /boot/gentoo nodhcp secureconsole root=live:CDLABEL=LiveUSB rd.live.dir=/ rd.live.squashimg=image.squashfs cdroot rd.live.ram=1
        initrd /boot/gentoo.igz
}

...

Installing a bootloader

Installing GRUB

Finally install the grub bootloader on the USB drive. Pick one or more targets supported by the image.

64 bit UEFI:

root #grub-install --force --removable --no-floppy --target=x86_64-efi --boot-directory=/mnt/usb/boot --efi-directory=/mnt/usb/efi

32 bit UEFI:

root #grub-install --force --removable --no-floppy --target=i386-efi --boot-directory=/mnt/usb/boot --efi-directory=/mnt/usb/efi

BIOS:

root #grub-install --force --no-floppy --target=i386-pc --boot-directory=/mnt/usb/boot /dev/sdc
Unmounting the drive
root #umount /mnt/usb

Creating bootable LiveUSB drives under Windows

Rufus

Rufus is a free and open source project created to write images to USB drives, with a variety of operating systems. It tends to be faster than the Universal USB installer (see in the next section).

Rufus can be downloaded from the project's homepage.

Rufus is easy to use and should be mostly self explanatory. For more information, see Rufus' FAQ page.

Warning
On UEFI systems, one must select "dd mode" when using Rufus, otherwise GRUB fails with "unknown filesystem". The option for "dd mode" is presented after clicking "START" and is NOT the default

Universal USB Installer

Universal USB installer is one of the oldest Linux-capable LiveUSB creators for Windows systems. It supports most Linux distributions, and has a simple, helpful wizard for selecting the Linux distribution. For Gentoo Minimal Installation CDs, however, select the Try Unlisted Linux ISO which is at the very bottom of the list. Select the proper USB drive to format and extract Linux to, and click Create.

Universal USB installer can be downloaded from its homepage.

Booting

Insert the USB drive and turn on the computer, make sure the BIOS (or EFI firmware) has been set to boot from USB. If all goes well,a standard syslinux prompt should appear on the screen.

When attempting to boot from a USB device, be sure to select or enable USB drives as bootable devices in the system's firmware interface. If the ISO is UEFI capable, it may be necessary to enable booting UEFI devices as well. This is typically performed via toggle options in the BIOS or UEFI firmware interface.

The boot order may need to be adjusted in the system's firmware for USB devices to boot first, although it is usually easier to hit the appropriate key (commonly either F2 or Delete) and manually select the USB device as a one-time boot option from the list of bootable devices.

If installing Gentoo, follow the generic installation instructions found in the Gentoo Handbook appropriate to the system's architecture from here on!

See also

External resources

References


This page is based on a document formerly found on our main website gentoo.org.
The following people contributed to the original document: brix, neysx
They are listed here because wiki history does not allow for any external attribution. If you edit the wiki article, please do not add yourself here; your contributions are recorded on each article's associated history page.