Created
March 4, 2013 11:25
-
-
Save oliver-montes/5081653 to your computer and use it in GitHub Desktop.
Grabar imagen ISO en USB desde Mac OS
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
| ### Find Block Device | |
| diskutil list | |
| ### Unmount USB Stick | |
| diskutil unmountDisk /dev/diskX | |
| ### Write ISO to USB | |
| sudo dd if=/path/to/downloaded.iso of=/dev/diskX bs=1m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment