Paul Smith wrote:
After burning an ISO file onto a DVD, one gets a tree structure of directories on the DVD. Can one get the same tree structure of directories on the hard disk without burning first the ISO file? I mean: can one get the tree structure of directories directly from the ISO file?
Loopback mount the ISO image: # mkdir /mnt/iso # mount -r -o loop /path/to/your/file.iso /mnt/iso Paul.