< Back to index

One can loopback mount a file containing an entire filesystem, notably a CD ISO image or a floppy disc image, under many Unix-like operating systems such as Linux and FreeBSD. This makes the files within said filesystem accessible on some mount point.

For example if you wanted to mount filename.iso to /mnt/iso you would run the following command:

mount -o loop -t iso9660 filename.iso /mnt/iso

After doing so, the mounted files can be accessed with normal tools such as vi or GIMP, which need not be aware of how to read ISO images and such. One can also run mkfs commands to create an image file without needing the media the image will eventually be written to.

This feature is not natively available on Microsoft Windows, though it is often added using third-party applications such as DAEMON Tools and Alcohol 120%.

A freely-available [http://www.stoev.org/vmware/diskmount.html] tool from VMware can also be used to achieve similar functionality.
This entry uses material from from Wikipedia, the leading user-contributed encyclopedia. It is licensed under the GNU Free Documentation License. Disclaimer.