Linux – Why ‘dd’ Does Not Work for Creating Bootable USB

ddlinuxusb

Recently I wanted to create a bootable USB of Linux mint. I found that there was a lot of conflicting advice/experience about whether the 'dd' command could be used to create a bootable USB. I decided to download an ISO and try. While dd definitely put the image on the USB stick it was not bootable. So my question is what is the magic ingredient that will make this work or why has this approach persisted if it does not work?

This is the command I used,

dd if=/mint/iso/image of=/dev/sdb1 oflag=direct 

Best Answer

You are writing the image to the partition 1 of /dev/sdb

Change this to the following command:

dd if=/mint/iso/image of=/dev/sdb oflag=direct

this information was acquired from here

Related Question