I'm trying to make a bootable USB stick on Mac OS X and get the Acer Aspire accept it. Windows 7 is gone completely on the Acer and Ubuntu 13.04 or 13.10 does not start at all. I tried to make a Mac-bootable USB stick, but I cannot.
1 Answers
I believe that the article that you want is: http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-mac-osx
But in case you do not want to look it up, here it is:
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.
Download Ubuntu Desktop
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 -o ~/path/to/target.img ~/path/to/ubuntu.isoNote: OS X tends to put the .dmg ending on the output file automatically.
Run
diskutil listto get the current list of devices.Insert 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 N with the disk number from the last command; in the previous example, N would be 2).Execute
sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m(replace/path/to/downloaded.imgwith the path where the image file is located; for example,./ubuntu.imgor ./ubuntu.dmg).Using /dev/rdisk instead of /dev/disk may be faster. If you see the error
dd: Invalid number '1m', you are using GNU dd. Use the same command but replacebs=1mwithbs=1M.If you see the error dd: /dev/diskN: 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.
- 3,600
- 1,257