Created
August 26, 2013 16:53
-
-
Save pcraciunoiu/6343740 to your computer and use it in GitHub Desktop.
Migrate Ubuntu ISO to bootable USB
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 ~/Downloads/ubuntu-12.04.3-desktop-amd64.img ~/Downloads/ubuntu-12.04.3-desktop-amd64.iso | |
# Plug in USB | |
# List disks | |
diskutil list | |
# Grab relevant USB | |
diskutil unmountDisk /dev/disk2 | |
# Copy img to USB | |
sudo dd if=~/Downloads/ubuntu-12.04.3-desktop-amd64.img.dmg of=/dev/rdisk2 bs=1m | |
# Done! | |
diskutil eject /dev/disk2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment