iso:mount_iso_image
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
iso:mount_iso_image [2017/03/31 13:43] – peter | iso:mount_iso_image [2019/11/29 18:13] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== ISO - Mount ISO image ====== | ||
- | |||
- | Mount a raw ISO 9660 image file as a file system: | ||
- | |||
- | <code bash> | ||
- | mount -t iso9660 -o loop some.iso /mnt/data | ||
- | </ | ||
- | |||
- | |||
- | Mount a raw ISO 9660 image file as a READ-ONLY file system: | ||
- | |||
- | <code bash> | ||
- | mkdir /mnt/data | ||
- | mount -o loop,ro some.iso /mnt/data | ||
- | </ | ||
- | |||
- | where: | ||
- | |||
- | * **ro** = Mount the filesystem read-only. | ||
- | * **loop** = Mount as a loop device. | ||
- | |||
- | |||
- | Mount a raw ISO 9660 image file automatically using an entry in the file: /etc/fstab | ||
- | |||
- | <file bash / | ||
- | some.iso /mnt/data iso9660 loop,ro 0 3 | ||
- | </ | ||
- | |||
- | |||
- | <WRAP info> | ||
- | **NOTE**: | ||
- | |||
- | <code bash> | ||
- | cd /mnt/data | ||
- | ls -l | ||
- | </ | ||
- | </ | ||
- | |||
iso/mount_iso_image.1490967815.txt.gz · Last modified: 2020/07/15 09:30 (external edit)