ubuntu:iso:create_iso_from_cd
Table of Contents
Ubuntu - ISO - Create ISO from CD
Using dd
dd if=/dev/cdrom of=~/cdrom_image.iso.
You must have permission to access the drive directly using dd. Mount permissions are not necessarily the same as dd permissions!
When creating an ISO file, the device must not be mounted. To unmount the cdrom device, use the umount command as follows:
umount /dev/cdrom
Using cat
cat /dev/scd0 > cdrom_image.iso
ubuntu/iso/create_iso_from_cd.txt · Last modified: 2020/07/15 09:30 by 127.0.0.1