====== Ultimate Boot CD ======
===== Create Bootable USB with Linux =====
http://kb.digium.com/articles/FAQ/How-to-run-Ultimate-Boot-CD-from-USB-stick-Linux
==== Extract the ISO ====
:!: Mount the latest UBCD ISO or CD.
Extract UBCD files to a temporary location:
mkdir ~/Desktop/UBCDextracted
rsync -avr /media//UBCD528/* /home//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
==== Copy the Files to the USB Flash Drive ====
:!: Replug the USB flash drive to mount the filesystem.
cd /home//Desktop/UBCDextracted/
rsync -avr /home//Desktop/UBCDextracted/* /media//UBCD/
==== Make the USB Flash Drive Bootable ====
dd if=./ubcd/tools/linux/ubcd2usb/mbr.bin of=/dev/sdX
chmod +x ./ubcd/tools/linux/ubcd2usb/syslinux
./ubcd/tools/linux/ubcd2usb/syslinux --install --directory /boot/syslinux /dev/sdX1
sync