News:

The Latest electronic and computer Tips that work!

Main Menu

Create a ISO from CDROM

Started by branx86, February 14, 2017, 12:21:31 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

branx86


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/