$ hdiutil convert -format UDRW -o destination_file.img source_file.iso- Find usb stick device file
$ diskutil listLet's say it is /dev/disk2
- Partitioning the usb stick:
Warning: This will erase all data
$ diskutil partitionDisk /dev/disk2 1 "Free Space" "unused" "100%"$ sudo dd if=destination_file.img.dmg of=/dev/disk2 bs=1m- This will be long running with no output. Pressing CTRL+T will show the current status of the command.
$ diskutil eject /dev/disk2Reference: https://blog.tinned-software.net/create-bootable-usb-stick-from-iso-in-mac-os-x/