Skip to content

Instantly share code, notes, and snippets.

@mimizone
Created August 20, 2017 05:58
Show Gist options
  • Save mimizone/814304c945fa16a4bc3d63037f326d57 to your computer and use it in GitHub Desktop.
Save mimizone/814304c945fa16a4bc3d63037f326d57 to your computer and use it in GitHub Desktop.
mac os x - convert iso and make bootable usb
diskutil list
diskutil unmountDisk /dev/disk###
hdiutil convert -format UDRW -o image input.iso
sudo dd if=image.dmg of=/dev/rdisk### bs=1m && pid=$!
sudo kill -s INFO $pid
diskutil eject /dev/disk###
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment