How to mount/unmount Image (ISO) files without burning?

How to mount/unmount Image (ISO) files without burning?
1. To mount Image (ISO) file

sudo mkdir /media/iso
sudo modprobe loop
sudo mount file.iso /media/iso/ -t iso9660 -o loop

2. To unmount Image (ISO) file

sudo umount /media/iso/

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.