User Tools

Site Tools


computing:ubcd

This is an old revision of the document!


Ultimate Boot CD

Create Bootable USB with Linux

Extract the ISO

Mount the latest UBCD ISO or CD and extract it to a temporary location:

mkdir ~/Desktop/UBCDextracted

rsync -avr /media/<username>/UBCD528/* /home/<username>/Desktop/UBCDextracted/

Partition the USB Flash Drive

sudo su

Determine which USB drive:

fdisk -l

Blank the USB drive (optional):

dd if=/dev/zero of=/dev/sdX

Create a FAT32 partition and filesystem:

:!: Make the partition type 'c' (W95 FAT32 (LBA)) and 'active' (bootable).

fdisk /dev/sdX

Create the Filesystem

mkfs.vfat -F 32 -n UBCD /dev/sdX1

Make the USB Flash Drive Bootable

cd /home/<username>/Desktop/UBCDextracted/

dd if=./ubcd/tools/linux/ubcd2usb/mbr.bin of=/dev/sdX

:!: Replug the USB flash drive to mount the filesystem.

chmod +x ./ubcd/tools/linux/ubcd2usb/syslinux

./ubcd/tools/linux/ubcd2usb/syslinux --install --directory /boot/syslinux /dev/sdX1

sync
computing/ubcd.1389461321.txt.gz · Last modified: 2014/01/11 10:28 by gcooper