Skip to content

Instantly share code, notes, and snippets.

@bds
Created April 17, 2012 13:18
Show Gist options
  • Save bds/2405926 to your computer and use it in GitHub Desktop.
Save bds/2405926 to your computer and use it in GitHub Desktop.
Convert .iso to bootable USB on OSX
# Remove all partitions, erase, format with FAT with 'Disk Utility' BEFORE commands below
# Unmount flash drive, still shown in 'diskutil list`
diskutil unmountdisk /dev/disk2
# Write .iso to flash drive
sudo dd if=/path/to/your/distro.iso of=/dev/disk2 bs=1m
# Eject disk
diskutil eject /dev/disk2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment