Mac ISO to USB-Device (Terminal)

  1. Connect your USB Device to your machine
  2. Type following in your Terminal Application
diskutil list
  1. Finde the device you want to be wiped an replaced with the contend of your ISO (in our case /dev/disk2)
  1. Unmount the USB Device by following command:
diskutil unmountDisk YOUR-USB-DEVICE

in our example:

diskutil unmountDisk /dev/disk2
  1. Use the dd command
sudo dd if=YOUR.iso of=YOUR-USB-DEVICE bs=1m

in our example:

sudo dd if=/Users/vschaupper/Downloads/2020-02-13-raspbian-buster.img of=/dev/disk2 bs=1m

Short Info:

diskutil list
diskutil unmountDisk YOUR-USB-DEVICE
sudo dd if=YOUR.iso of=YOUR-USB-DEVICE bs=1m

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.