Skip to content

Instantly share code, notes, and snippets.

@colwilson
Created April 20, 2013 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colwilson/5425208 to your computer and use it in GitHub Desktop.
Save colwilson/5425208 to your computer and use it in GitHub Desktop.
Burns a Flash Drive from an ISO
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment