Now a day’s most of us didn’t use
CD
or DVD
drivers to burn & install OS, then what is the other option ? USB
or Memory Card
Which is very handy and good option to create bootable ISO image. Lot of applications is available in Linux to Create a bootable USB drive from an ISO image but we can make it easily using dd
command without headache. dd stands for Data Duplicator
which is used to convert and copy a file block by block from one device to another device.1) Install isohybrid tool
Install
syslinux
package which contain isohybrid
tool. It used to convert ISO image into USB drive compatible format.
Convert ISO image into USB drive compatible format.
First, we need to identify the USB device name by firing
fdisk -l
command on terminal before perform dd command. In my case our USB device name is /dev/sdb1
2) Create bootable ISO
Use
dd
command to write the ISO image into the disk. No need to format the USB Device, while using dd
command it will automatically overwrite with new content.Details:
dd: command
if: input file (Mention the location of ISO image file)
of: output file (where to write the ISO file, USB device location)
bs: read and write up to BYTES bytes at a time
sync: pad every input block with NULs to ibs-size
Enjoy…)