From a disk image (.img)
Ubuntu originally provided the Ubuntu Netbook Remix as a .img that made creating a bootable USB as simple as the steps below.- Download the desired .img file
- Open a Terminal (under Utilities)
- Run
diskutil list
to get the current list of devices - Insert your flash media
- Run
diskutil list
again and determine the device node assigned to your flash media (e.g. /dev/disk2) - Run
diskutil unmountDisk /dev/diskX
where X is the number of disk determined above - Execute
sudo dd if=/path/to/downloaded.img of=/dev/diskX bs=1m
again using the disk number from the last step and the actual path to your img. - Run
diskutil eject /dev/diskX
and remove your flash media when the command completes
From a iso image (.iso)
Since Ubuntu 9.10, Canonical has only supplied iso image files and it's not possible to create a bootable USB drive from the Ubunto iso on a mac. If you follow the steps below you'll see the error Could not validate source - error 254. Mac OSX only supports restoring images in particular formats and the one that Ubuntu use (ISO 9660) isn't supported by Apple.On the mac the default application supplied for changing this is Disk Utility. You can find this in the Utilities directory in the Applications directory.
To create the USB disk do the following:
- First make sure that the disk is bootable and that the Partition Map Scheme used is Master Boot Record
- After that it's simply a matter of using the Disk Utility Restore functionality to write the iso image to the USB disk
- Drag the iso image into Source from the Finder
- Drag the USB disk into Destination from the list in Disk Utility
No comments:
Post a Comment