Links

Thursday, July 20, 2006

Solyga's Linux/c Page

Solyga's Linux/c Page: "isodump - extract iso9660 image from device or file
Do you have CloneCD images which are to be mounted via the loop device with your Linux box? Isodump may be your solution.
lsm-entry, man-page, Ibiblio."

after running the previous example:
./img2iso cd.img cd.iso

presto

CD Image Conversion - LQWiki

CD Image Conversion - LQWiki:

"img2iso

.img is a CloneCD Image file.

The actuall name of this utility is called isodump. Honestly, it's a very bad name for it seeing as how most, if not all, linux distributions already come with a program named isodump. I've taken the liberty of renaming it so it doesn't conflict with the existing program.

isodump - This is how I compile this program:

sed -i 's@isodump@img2iso@g' isodump.c

sed -i 's@isodump@img2iso@g' isodump.h

sed -i 's@isodump@img2iso@g' Makefile.Linux

sed -i 's@isodump@img2iso@g' isodump.man

mv isodump.c img2iso.c

mv isodump.h img2iso.h

mv isodump.man img2iso.man

./configure --prefix=/usr

make

The sed commands will give you a binary and man page named 'img2iso' instead of 'isodump' "