>using cdrtools-11a24. mkisofs does not seem to work when doing: >cat 1.new | mkisofs -v -r -V 236 -path-list - -o >/home/backup/html/iso_images/archiveHTML-06-03-2002-236.iso >/home/backup/html/count_files/1.new > >here is an example of what's in 1.new: >/data1/archiveHTML/0044/605/0044605450.gz >/data1/archiveHTML/0044/605/0044605584.gz >/data1/archiveHTML/0044/605/0044605938.gz >/data1/archiveHTML/0044/605/0044605939.gz >/data1/archiveHTML/0044/605/0044605940.gz >/data1/archiveHTML/0044/605/0044605941.gz > >There are roughly 140,419 lines in this file. Each file in this file is >about 4KB a piece. Together it makes around a 600-650 MB iso image. > >It will run for a few days and nothing comes out of it, no errors or >anything. It has been suggested that I use -graft-points to solve my >problem but do not see how it fits. Any help would be greatly >appreciated.
Do you mean it runs for a few days (???) and exits cleanly? Sounds more like it isn't actually reading anything from stdin and just waiting for input. It shouldn't take more than a few (may be 10 on a slow machine) minutes to run ... Does it work OK if you use '1.new' as the argument to the -path-list option? i.e. mkisofs -v -r -V 236 -path-list 1.new ... Reading path-lists from stdin should work (it does in v1.15a14 at least) - I don't know if Joerg has changed anything recently ... Note: you will have to use the -graph-points syntax (and change the contents of your input list) to preserve the input directory structure) e.g. /data1/archiveHTML/0044/605/0044605450.gz=/data1/archiveHTML/0044/605/0044605450.gz /data1/archiveHTML/0044/605/0044605584.gz=/data1/archiveHTML/0044/605/0044605584.gz ... and use the -graph-points option. James Pearson -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

