Skip to content

Instantly share code, notes, and snippets.

@alghanmi
Created April 8, 2016 04:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alghanmi/597efafc1f2472ec243bb443fe36f1c4 to your computer and use it in GitHub Desktop.
Save alghanmi/597efafc1f2472ec243bb443fe36f1c4 to your computer and use it in GitHub Desktop.
Create a USB drive from ISO image on Mac
# Convert ISO to IMG format
hdiutil convert -format UDRW -o iso-image.img iso-image.iso
# Find USB Drive number N
diskutil list
diskutil unmountDisk /dev/diskN
# Write image to drive /dev/diskN where N is the disk number
sudo dd if=iso-image.img.dmg of=/dev/diskN
# Eject the drive
diskutil eject /dev/diskN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment