Ubuntu – Any way to manually make a bootable USB from ISO

bootisounetbootin

I've been using Unetbootin but it occasionally fails to create a bootable usb the way I need it to, especially with the newer versions.

Is there a way I could extract the iso myself?

Best Answer

This is a bit destructive, but works all the time. It will write everything to the /dev/sdb (which is the usb device. )

sudo dd if=/path/to.iso of=/dev/sdb bs=16M

read the manpage of dd

Related Question