How to write a bootable ISO file to an USB Pen Drive on MacOS
I always have to google it… So I finally write it down myself:
1: Insert stick and identify device:
$ diskutil list
diskutil list
...
/dev/disk3 (external, physical): <------------ This is the device you're looking for
#: TYPE NAME SIZE IDENTIFIER
0: FDisk_partition_scheme *63.1 GB disk3
1: Windows_NTFS stick7 63.1 GB disk3s1
2: Unmount it:
$ diskutil unmountDisk /dev/disk3
3: Write ISO file to stick usind dd
:
$ sudo dd if=Windows-10.iso of=/dev/disk3 bs=1m
Was not that hard, was it?