Created
April 20, 2013 08:10
-
-
Save colwilson/5425208 to your computer and use it in GitHub Desktop.
Burns a Flash Drive from an ISO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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