Actions

Difference between revisions of "Create and Mount ISO Images in Ubuntu"

From zen2

(New page: ==Create in ISO Image== <pre> cat /dev/scd0 > /home/test.iso </pre> ==Mount an ISO Image== Create a location to mount to <pre> sudo mkdir /media/iso </pre> Then mount the image to that l...)
 
m (1 revision)
 
(No difference)

Latest revision as of 08:08, 25 July 2013

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/