The attached script will update isolinux to the latest version and create a hybrid Linux Mint (or Ubuntu) ISO.
How to use:
- 1. Save the attached mkhybridiso.tar.gz somewhere convenient, like your home folder
2. Open a terminal (Menu>Terminal)
3. Extract mkhybridiso.tar.gz by typing:4. Run the script:Code: Select all
tar xvf mkhybridiso.tar.gz
Replace /PATH/TO/ISO with the path to your Linux Mint ISO (eg /home/steven/linuxmint-9-gnome-rc-i386.iso)Code: Select all
cd mkhybridiso sudo ./mkhybridiso.sh /PATH/TO/ISO
A hybrid ISO will be created in the current directory
- Note: This will erase all data on the USB drive
1. Plug in your USB drive (If your desktop automounts it, please unmount it with Right Click>Unmount)
2. Open a Terminal and type:3. You should see something similar toCode: Select all
dmesg | tail
You can ignore everything except the part in '[ ]' brackets. My USB drive is 'sdb', remember yoursCode: Select all
scsi 4:0:0:0: Direct-Access SanDisk U3 Cruzer Micro 8.01 PQ: 0 ANSI: 0 CCS sd 4:0:0:0: Attached scsi generic sg1 type 0 sd 4:0:0:0: [sdb] 7892991 512-byte logical blocks: (4.04 GB/3.76 GiB) sd 4:0:0:0: [sdb] Write Protect is off sd 4:0:0:0: [sdb] Mode Sense: 45 00 00 08 sd 4:0:0:0: [sdb] Assuming drive cache: write through sd 4:0:0:0: [sdb] Assuming drive cache: write through sdb: sdb1 sd 4:0:0:0: [sdb] Assuming drive cache: write through sd 4:0:0:0: [sdb] Attached SCSI removable disk
4. You can write the ISO to your USB drive with one of the following commands (Choose whatever you find easiest to remember):Code: Select all
sudo dd if=/home/steven/linuxmint-9-gnome-rc-i386_hybrid.iso of=/dev/sdb bs=1M
Code: Select all
sudo cat /home/steven/linuxmint-9-gnome-rc-i386_hybrid.iso > /dev/sdb
Code: Select all
sudo cp /home/steven/linuxmint-9-gnome-rc-i386_hybrid.iso /dev/sdb
Note: BIOS must support booting from USB