Actions

Create and Mount ISO Images in Ubuntu

From zen2

Revision as of 01:17, 22 May 2009 by Chris (talk | contribs) (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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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/