Actions

Create and Mount ISO Images in Ubuntu

From zen2

Create in ISO Image

cat /dev/scd0 > /home/test.iso

Mount an ISO Image

Create a location to mount to

sudo mkdir /media/iso

Then mount the image to that location

sudo mount -o loop /home/test.iso

Unmount the ISO Image

sudo umount /media/iso/