View previous topic :: View next topic |
Author |
Message |
LIsLinuxIsSogood Veteran
Joined: 13 Feb 2016 Posts: 1186
|
Posted: Sun Sep 22, 2019 8:54 am Post subject: In order to see contents of an iso |
|
|
I am cleaning up the file system on my desktop machine. I would like to see "inside" the files which are iso, but right now I have no way of doing so. I think it is disabled in kernel (at least according to the quick check). But in order to not have to burn them and mount them via a secondary device, and be able to mount directly on the live filesystem is the setting needed for this considered BLK LOOP or something like that? |
|
Back to top |
|
|
NeddySeagoon Administrator
Joined: 05 Jul 2003 Posts: 54831 Location: 56N 3W
|
Posted: Sun Sep 22, 2019 8:58 am Post subject: |
|
|
LIsLinuxIsSogood,
Thats it. If your kernel has support, will list loop0 and friends.
You will need ISO9660 filesystem support too. _________________ Regards,
NeddySeagoon
Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail. |
|
Back to top |
|
|
fturco Veteran
Joined: 08 Dec 2010 Posts: 1181
|
Posted: Mon Sep 23, 2019 11:24 am Post subject: |
|
|
@LIsLinuxIsSogood:
You need to enable the CONFIG_ISO9660_FS option in the kernel (File systems > CD-ROM/DVD Filesystems > ISO 9660 CDROM file system support).
Then you can mount .iso images using a temporary empty directory as a target:
Code: | mount -o loop,ro image.iso /mnt |
|
|
Back to top |
|
|
steve_v Guru
Joined: 20 Jun 2004 Posts: 416 Location: New Zealand
|
Posted: Wed Sep 25, 2019 5:09 am Post subject: Re: In order to see contents of an iso |
|
|
LIsLinuxIsSogood wrote: | I am cleaning up the file system on my desktop machine. I would like to see "inside" the files which are iso, but right now I have no way of doing so. | Three options off the top of my head:
The loopback block driver in the kernel (requires root, making a mountpoint etc., relatively poor format support). CONFIG_BLK_DEV_LOOP and CONFIG_ISO9660_FS
CDEmu/VHBA (DE support, user-mode mounting, can read many formats, but it's an out-of-tree kernel module).
A decent archiver / file manager (midnight commander can browse .iso files, as can ark on KDE) _________________ Once is happenstance. Twice is coincidence. Three times is enemy action. Four times is Official GNOME Policy. |
|
Back to top |
|
|
|