Write an ISO to an USB drive with system commands if you are using MacOS
MacOS #
Find the disk #
diskutil list
Umount partitions #
sudo diskutil umount /dev/<disk_part>
Write using dd #
sudo dd if=<iso file> of=/dev/<usb drive> bs=1m status=progress