devdump, isoinfo, isovfy, isodump - Utility programs for dumping and verifying iso9660 images.
devdump isoimage
isodump isoimage
isoinfo [ -d ] [ -h ] [ -R ] [ -J ] [ -j charset ] [ -f ] [ -l ] [ -p ] [ -T sector ] [ -N sector ] [ -i isoimage ] [ -x path ]
isovfy isoimage
devdump is a crude utility to interactively display the contents of device or filesystem images. The initial screen is a display of the first 256 bytes of the first 2048 byte sector. The commands are the same as with isodump .
isodump is a crude utility to interactively display the contents of iso9660 images in order to verify directory integrity. The initial screen is a display of the first part of the root directory, and the prompt shows you the extent number and offset in the extent.
You can use the 'a' and 'b' commands to move backwards and forwards within the image. The 'g' command allows you to goto an arbitrary extent, and the 'f' command specifies a search string to be used. The '+' command searches forward for the next instance of the search string, and the 'q' command exits devdump or isodump .
isoinfo is a utility to perform directory like listings of iso9660 images.
isovfy is a utility to verify the integrity of an iso9660 image. Most of the tests in isovfy were added after bugs were discovered in early versions of mkisofs. It isn't all that clear how useful this is anymore, but it doesn't hurt to have this around.
Only the isoinfo program has any command line options. These are:
Eric Youngdale <ericy*gnu.ai.mit.edu> or <eric*andante.jic.com> is to blame for these shoddy hacks. Patches to improve general usability would be gladly accepted.
The user interface really sucks.
These utilities are really quick hacks, which are very useful for debugging problems in mkisofs or in an iso9660 filesystem. In the long run, it would be nice to have a daemon that would NFS export a iso9660 image.
The isoinfo program is probably the program that is of the most use to the general user.
These utilities come with the mkisofs package, and the primary ftp site is tsx-11.mit.edu in /pub/linux/BETA/cdrom/mkisofs and many other mirror sites. Despite the name, the software is not beta.
As the 'bugs' section above says, the interactive interface really sucks.
I've found that the easiest way to examine and get files out of an ISO image is to generate a file listing:
isoinfo -J -f -i image-file.iso > filelist.txt
and then grab the files you want out of the filelist.txt, remembering that isoinfo writes to stdout(3):
isoinfo -J -i image-file.iso -x /file/from/filelist > newfilename
2 pages link to isoinfo(8):