Execute below command to create a bootable CD/USB from the ISO /path/to.iso to the device /dev/sdb.
1 | $ sudo dd if=/path/to.iso of=/dev/sdb bs=16M |
Some documetation in regards the dd command.
Name
dd - convert and copy a file
Description
The dd utility copies the standard input to the standard output. Input data is read and written in 512-byte blocks. If input reads are short, input from multiple reads are aggregated to form the output block. When finished, dd displays the number of complete and partial input and output blocks and truncated input records to the standard error output.
The following operands have been used for this example.
1 | bs=n Set both input and output block size to n bytes, |
You can check more documetation on below links.