Mount a ISO file on Linux system.

Mount a ISO file in Linux system is very easy…. Just follow the following command.

mount -t iso9660 -o ro,loop=/dev/loop0 ubuntu.iso /media

Here ubuntu.iso means the ISO file that you want to mount and media means the mounted location that you want to mount.