Posted on Saturday 19th May 2018
In 2018 media such as CD’s and DVD’s have almost died out, with USB drives holding more capacity and being produced relatively cheaply. This means it makes more sense and is better value to use USB drives in place of CD’s or DVD’s.
This article looks at how to create a bootable USB drives for various uses.
A bootable USB is a USB attached media, which you can use as a boot device for a computer, this includes usb thumb drives and usb external hard drive enclosures.
GUI Tools are programs which you run on your computer visually and are usually the easiest to use.
The simplest to use in my preference is UNetBootin (http://unetbootin.sourceforge.net/) which is available in most distributions.
All you need to do is:
Select the circle next to Diskimage
Browse for the file using the … button
Select Your Drive and click ok
Using Command Line utilities is more complex but allows for more control of what you are doing and can get more information about what is happening.
sudo fdisk -l
sudo umount /dev/sdb1
sudo dd if=/path/to/yourfile.iso of=/dev/sd1 bs=4M && sync