Created
March 7, 2014 21:21
-
-
Save robinbentley/9420371 to your computer and use it in GitHub Desktop.
Writing a ISO to a USB stick from mac terminal
This file contains 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 dd if=[PATH TO ISO] of=[PATH TO DISK] bs=4096; sync | |
sudo dd if=/Users/Robin/Downloads/linux.iso of=/dev/rdisk1 bs=4096; sync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment