The common unix dd utility can be used to write ISOs to USB drives without needing additional software. These are the steps for how to use it on macOS specifically, but it's very similar on other unix based systems. Proceed with caution, dd can overwrite an entire disk so make sure you target the correct one.
diskutil listidentify the target disk (the USB) that you want to write to, something like "/dev/disk8".diskutil unmountDisk /dev/disk8unmount the identified target disk.sudo dd if=<path-to-file.iso> of=/dev/rdisk8 bs=1m status=progressthis will write the iso to the target disk. Note that this is using "rdisk8" with the r prefix for raw disk which makes this faster for writing an image.diskutil eject /dev/disk8to eject the USB drive when done
last updated: