Mac ISO to USB Stick

How to create a bootable USB Stick from a ISO file.

First you have to convert the iso file to a img file. This command will do the work.

hdiutil convert -format UDRW -o /path/to/source /path/to/destination

Then you have to find the attached USB device

diskutil list

Now search for device (for example: /dev/disk3)
and eject this device

diskutil unmountDisk /dev/diskN

Now you can start the copy process (be careful that you choose the right device, all datas on this device will be deleted!!)

sudo dd if=/path/to/source.img of=/dev/diskN bs=1m

Don’t forget to eject the device again before unplugging

diskutil unmountDisk /dev/diskN

 

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Time limit is exhausted. Please reload the CAPTCHA.

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.