Saturday, 20 April 2013

Fastest Way to Burn an ISO to a USB Flash Drive

If your using Linux:


sudo ls -l /dev/disk/by-id/*usb*
# the three letter ones (sdb, sdc etc) are your choices of Flash Drive
usb=sdb
iso=~/Downloads/myiso.iso
sudo dd if=${iso} of=/dev/${usb} bs=4M; sync
view raw burn_usb.sh hosted with ❤ by GitHub