Bootable CD from ISO

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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
bs=n                    Set both input and output block size to n bytes,
superseding the ibs and obs operands. If no
conversion values other than noerror, notrunc or
sync are specified, then each input block is
copied to the output as a single block without
any aggregation of short blocks.

if=file Read input from file instead of the standard input.

of=file Write output to file instead of the standard
output. Any regular output file is truncated
unless the notrunc conversion value is specified.
If an initial portion of the output file is
seeked past (see the oseek operand), the output
file is truncated at that point.

You can check more documetation on below links.