On Fedora Linux, you can easily write an ISO file to a USB drive using the dd command. Here’s a simple and reliable example:
sudo dd if=/path/to.iso of=/dev/sdX bs=4M status=progress oflag=sync
Replace /path/to.iso with the ISO file location and /dev/sdX with your USB device (not a partition like /dev/sdX1).