Last active
October 9, 2016 22:34
-
-
Save andrusha/10843465 to your computer and use it in GitHub Desktop.
Create bootable USB from ISO image on Mac
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
hdiutil convert -format UDRW -o destination_file.img source_file.iso | |
# Or re-partition it with Disk Utility with 1 Free Space Partition | |
diskutil partitionDisk /dev/disk2 1 "Free Space" "unused" "100%" | |
# Or copy the image through Disk Utility in Restore menu | |
dd if=destination_file.img.dmg of=/dev/disk2 bs=1m | |
# Or eject manually | |
diskutil eject /dev/disk2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dd: /dev/disk3: Permission denied