Task: mount a CD image saved in an .iso file.
It's very simple to do:
$ sudo mount myfile.iso /mnt -o ro,loop
where instead of "myfile.iso" you specify your own .iso file.
And at /mnt you now have the entire content of the CD mounted read-only. As if through a virtual CD-ROM drive (a CD emulator).
Comments