38

I want to create an iso image from my bootable DVD. I want to create direct DVD to iso image. Please suggest me the right way to create iso image from DVD.

Rakesh
  • 1,139
  • 7
  • 23
  • 27

4 Answers4

66

Insert the CD or DVD that you want to make an ISO image of, and open a terminal window. To do that, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo cat /dev/srx > /home/<user_name>/<file_name.iso>

Make sure that you replace (x) with your device number.

for example in my case I would do:

sudo cat /dev/sr0 > /home/mitch/example.iso
Mitch
  • 106,657
  • 24
  • 210
  • 268
27

Either use Brasero, like Mohammad Etemaddar suggested, or dd, as described here: http://www.wikihow.com/Create-an-ISO-File-in-Linux

The method which is described in WikiHow: dd if=/dev/cdrom of=~/cdrom_image.iso

if: input file

of: output file

dd: disk dump

Another very good description on making ISO image has been written here.

Damn Terminal
  • 2,636
  • 7
  • 27
  • 36
  • 3
    I'd rather use a designated tool like `dd` than piping all data as suggested in accepted answer. +1! For dd you can append `status=progress` for feedback about … well… progress :) – nuala Jul 19 '19 at 15:51
24

In Brasero Disk Burner which is installed on Ubuntu by default, select Disc Copy and select Disk image for Select a Disk to write to and create image.

Mohammad Etemaddar
  • 1,366
  • 4
  • 18
  • 31
0

i know that imgburn (for windows) works flawlessly on the lastest wine, tried it myself while navigating my windows partition

kris2340k
  • 67
  • 2
  • 11