iso:mount_iso_image
This is an old revision of the document!
ISO - Mount ISO image
mkdir /mnt/data mount -o loop,ro some.iso /mnt/data
where,
- ro = Mount the filesystem read-only.
- loop = Mount as a loop device.
NOTE: A loop device is a pseudo-device that makes a file accessible as a block device.
cd /mnt/data ls -l
Another approach
Mounting the raw ISO file
mount -t iso9660 -o loop /home/user1/some.iso /mnt/data
iso/mount_iso_image.1490956880.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)