hdiutil convert -format UDRW -o /path/to/target.img /path/to/source.iso
- Note: OS X tends to put the .dmg ending on the output file automatically.
- Rename the file
mv /path/to/target.img.dmg /path/to/target.img
diskutil list
to get the current list of devices- Insert flash media
diskutil list
again and determine the device node assigned to your flash media (e.g. /dev/disk2)diskutil unmountDisk /dev/diskN
(replace N with the disk number from the last command - in the previous example, N would be 2)sudo dd if=/path/to/downloaded.img of=/dev/rdiskN bs=1m
diskutil eject /dev/diskN
diskutil list
to get the current list of devices- Insert flash media
diskutil list
again and determine the device node assigned to your flash media (e.g. /dev/disk2)diskutil eraseDisk FAT32 "WINDOWS10" MBRFormat diskN
(replace N with the disk number from the last command - in the previous example, N would be 2)- Mount Windows ISO
cp -rp /Volumes/CCCOMA_X64FRE_EN-US_DV9/* /Volumes/WINDOWS10/
diskutil eject /dev/diskN