I'd like to create an Ubuntu live USB stick on a Mac to use to install Ubuntu on another machine. How do I accomplish this?
5 Answers
Taken from here:
We would encourage Mac users to download Ubuntu Desktop Edition by burning a CD. But if you prefer to use a USB stick, please follow the instructions below.
Note: this procedure requires that you create an .img file from the .iso file you download. It will also change the filesystem that is on the USB stick to make it bootable, so backup all data before continuing.
Tip: Drag and drop a file from Finder to Terminal to 'paste' the full path without risking typing errors.
Open the Terminal (in
/Applications/Utilities/or query Terminal in Spotlight)Convert the .iso file to .img using the convert option of hdiutil. Example:
hdiutil convert -format UDRW ~/path/to/target.iso -o ~/path/to/ubuntu.imgNote: OS X tends to put the .dmg ending on the output file automatically.
Run
diskutil listto get the current list of devicesInsert your flash media
Run
diskutil listagain and determine the device node assigned to your flash media
(e.g./dev/disk2)Run
diskutil unmountDisk /dev/diskN(replace
Nwith the disk number from the last command; in the previous example,Nwould be 2)Execute the following command while replacing
/path/to/downloaded.imgwith the path where the image file is located; for example,./ubuntu.imgor./ubuntu.dmg).sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m
- Using
/dev/rdiskinstead of/dev/diskmay be faster.- If you see the error
dd: Invalid number '1m', you are using GNUdd. Use the same command but replacebs=1mwithbs=1M.- If you see the error
dd:/devdiskN: Resource busy, make sure the disk is not in use. Start the Disk Utility.app and unmount (don't eject) the drive.Run
diskutil eject /dev/diskNand remove your flash media when the command completes- Restart your Mac and press Alt while the Mac is restarting to choose the USB-Stick
You can do it really easily with unetbootin which is available for Mac OS - the upside being it doesn't need more than a few clicks on a simple GUI.
(note this is only for newer Intel Mac's, and won't work with older PowerPC machines unfortunately.)
- 569
You could try following the instructions on ubuntu.com.
How to create a bootable USB stick on OS X
Useful Links
Additionally, you could try looking at some of these links for help:
- 72,312
- 203
Follow these steps:
Download the latest Ubuntu ISO from here and UNetbootin from here.
Insert your USB drive.
Make UNetbootin executable from file properties.
Run it.
Now click in Diskimage. Give the path of the downloaded Ubuntu ISO.
Then select your pen Drive from the list.
Then press OK.
Wait until finish.
After that you are able to boot or install Ubuntu from that pen-drive.
- 16,703
- 134
You can use the Linux USB Creator. The Linux USB Creator for Mac has been released. This is the easiest way to create a live linux USB on a mac.
If you use OSX Lion, you can Download this file, and if you use OSX Snow Leopard, you can Download this file
For more information on the Linux USB creator, just visit the Website
The other option is to use UNetbootin.
If your Mac is a G4 or G5 take a look at this.
- 109,787