cBrandon Community

General Category => Linux Fixes => Topic started by: branx86 on February 14, 2017, 12:21:31 PM

Title: Create a ISO from CDROM
Post by: branx86 on February 14, 2017, 12:21:31 PM

dd if=/dev/cdrom of=/path/to/image.iso


Create the mount point directory on Linux: sudo mkdir /mnt/iso
Mount the ISO file on Linux: sudo mount -o loop /path/to/my-iso-image.iso /mnt/iso
Verify it, run: mount OR df -H OR ls -l /mnt/iso/
Unmount the ISO file using: sudo umount /mnt/iso/