CD to ISO with linux terminal
If cd was mouted automatically unmout it with umount command
umount /dev/cdrom
or
umount /media/cdrom
on ubuntu
Create CD-ROM ISO image with dd command
dd if=/dev/cdrom of=/tmp/cdimage.iso
if=/dev/cdrom Read from /dev/cdrom (raw format)
of=/tmp/cdimage.iso write to FILE cdimage.iso i.e. create an ISO image
Read how to burn ISO image to CD with terminal





Comments
Post new comment