Created
November 25, 2014 20:10
-
-
Save dossy/9f73309df86370d3b6be to your computer and use it in GitHub Desktop.
Creating and burning ISOs on OSX command line
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
$ diskutil list | |
$ sudo umount /dev/disk3 | |
$ dd if=/dev/disk3 of=image.iso bs=2048 conv=sync,notrunc | |
$ hdiutil burn image.iso |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment