In Linux, a separate program is unnecessary. You can simply use the mount command.
Let's say your ISO is located at /home/user/disc.iso, and you want to mount it at /media/iso. First become root (or prepend sudo to the following command if you use it).
Then use the command mount -o loop /home/user/disc.iso /media/iso to mount your ISO.
When you're done and want to unmount it, simply become root (or use sudo) and do the command umount /media/iso.
To view a list of everything that's currently mounted, issue the command mount.
Happy mounting.




MultiQuote


|