Mounting iso files in windows requires you to install Daemon tools,alcohol software etc but things are different and better in linux.Say you have a file called myfile.iso now to mount it on your system all you have to do is make a folder for mounting it say you name it miso.Here are the commands…
**Create a folder called miso **
$mkdir miso
**(assuming both myfile.iso and folder miso are in the same directory) now mount the file called myfile.iso in miso**
$sudo mount -o loop myfile.iso miso
**if miso is in /mnt directory and myfile.iso is in the downloads directory of your home directory**
$sudo mount -o loop ~/Downloads/myfile.iso /mnt/miso
Congrats ! Your iso file is mounted in miso directory
If you don’t have root access that is sudo then you can try this command
$mount -o loop -t iso9660 myfile.iso miso
Enjoy!
