How to create an iso file in ubuntu

Quick and easy way to create an iso file from any cd/dvd under linux:

sudo umount /dev/cdrom
dd if=/dev/cdrom of=filename-goes-here.iso bs=1024

Comments