How to mount ISO image on Linux

By segopecel

Use this command to mount ISO file to some mount point:
mount -o loop -t iso9660 <filename> <mount destination>

Example:

mount -o loop -t iso9660 images.iso /mnt/mnt0

Leave a Reply