Rockridge and Joliet...

I was able to get Rockridge format working OK with mkisofs after applying a
fix for the qsort problem to the code.
However I need to share log files with window users, so I thought Joliet and
Rockridge formats no problem…
So I ran the mkisofs -J -R -o filename.iso, it tells me fileA has the same
filename as fileA and quits. THERE IS ONLY ONE FILEA!!! Of course it has
the same name! This sounds like the same sort of thing as the qsort
problems has anybody else seen this?

Bob Smith <bobsmith@home.com> wrote:

I was able to get Rockridge format working OK with mkisofs after applying a
fix for the qsort problem to the code.
However I need to share log files with window users, so I thought Joliet and
Rockridge formats no problem…
So I ran the mkisofs -J -R -o filename.iso, it tells me fileA has the same
filename as fileA and quits. THERE IS ONLY ONE FILEA!!! Of course it has
the same name! This sounds like the same sort of thing as the qsort
problems has anybody else seen this?

Seems to work for me …

mkisofs -version

mkisofs 1.15a17 (–)

mkdir cdimg

touch cdimg/fileA

mkisofs -RJ -quiet -ocd.img cdimg

mount -tcd -onorrip cd.img /cdimg

ls -l /cdimg

total 9
dr-xr-xr-x 2 root root 2048 Aug 27 10:36 .
dr-xr-xr-x 2 root root 2048 Aug 27 10:36 …
dr-xr-xr-x 2 root root 7 Aug 26 10:37 .info.
-r–r–r-- 1 root root 0 Aug 27 10:36 fileA

umount /cdimg

mount -tcd -onojoliet cd.img /cdimg

ls -l /cdimg

total 9
dr-xr-xr-x 2 root root 2048 Aug 27 10:36 .
dr-xr-xr-x 2 root root 2048 Aug 27 10:36 …
dr-xr-xr-x 2 root root 8 Aug 26 10:37 .info.
-rw-rw-r-- 1 jgarvey techies 0 Aug 27 10:36 fileA

umount /cdimg

… using (with a qsort-patched “write.c”). Are you sure you are
running the correct mkisofs? Do you have a reproducable example
(tar image of directory structure which gives this error and the
exact mkisofs invocation)? What OS/libc version?