Created
April 17, 2012 13:18
-
-
Save bds/2405926 to your computer and use it in GitHub Desktop.
Convert .iso to bootable USB on OSX
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
# 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