Mount iso image ( ISO 9660 filesystem ) with linux mount command

Instead of burning all images to cd / dvd disks is sometimes better and quicker to just mount row iso 9660 file system to your Linux. Lets say that we want to mount myiso9660.iso image.

First create mount point:

mkdir /mnt/myiso

Then mount iso with linux mount command:

mount -t iso9660 myiso9660.iso /mnt/myiso -o loop

All files can be accessed from /mnt/myiso directory.

Leave a Reply

You must be logged in to post a comment.