How to Burn a DVD in the Terminal
A quick reminder on how to burn a an ISO using the terminal. Install ”wodim”
1 |
$ sudo apt-get install wodim |
Install “inxi”
1 |
$ sudo apt-get install inxi |
Identify Drive
1 |
$ inxi -d |
Read output
1 2 3 |
Drives: HDD Total Size: 160.0GB (14.4% used) 1: id: /dev/sda model: size: 160.0GB Optical: /dev/sr0 model: N/A dev-links: cdrom Features: speed: 48x multisession: yes audio: yes dvd: yes rw: cd-r,cd-rw,dvd-r,dvd-ram |
Burn your ISO
1 |
wodim -eject -tao speed=2 dev=/dev/sr0 -v -data Ubuntu.14.04.iso |
Also tagged burn, terminal