Copy .iso file to usb to boot

From AcrodusWiki

This can easily be done with a one line command in the linux terminal as seen below:

dd bs=4M if=/path/to/file.iso of=/dev/sdx status=progress oflag=sync

dd command is for copying files. See man dd.