User Tools

Site Tools


create_an_iso_file_from_a_cd_or_dvd-rom_using_the_terminal

Create An ISO File From a CD or DVD-ROM Using the Terminal

(Tested in Linux Mint.)

Insert the CD/DVD in the drive.

Open a terminal.

Install dcfldd, if it isn’t already:

sudo apt-get install dcfldd

Figure out where your CD/DVD is mounted:

mount

(On my system it’s mounted as /dev/sr0)

Unmount it:

umount /dev/sr0

Create the ISO image:

dcfldd if=/dev/sr0 of=image.iso

In the example above, “image.iso” will be created in the current directory. You can change the “of” argument to whatever you want, e.g., different name, full path, etc.

create_an_iso_file_from_a_cd_or_dvd-rom_using_the_terminal.txt · Last modified: 2018/12/31 18:38 by 127.0.0.1