I have am getting the above error when trying to write a multi-session CD as follows, (snippets from a shell script);
# Do first session, data to be burnt is in $build_dir /tmp/mkisofs -l -R -r -J -f \ -A "$application_id" \ -P "$publisher_id" \ -p "$preparer_id" \ -V "$vol_id" \ -sysid "$sys_id" \ -o $ISO_image_1 $build_dir if [ $? -eq 0 ]; then /tmp/cdrecord -v dev=1,0 driveropts=burnproof fs=4m speed=12 -multi -eject $ISO_image_1 fi # Add another session: Wipe $build_dir and put some new stuff there to be burnt msinfo=`/tmp/cdrecord -msinfo dev=1,0` if [ $? -ne 0 ]; then exit fi echo "msinfo="$msinfo /tmp/mkisofs -l -R -r -J -f \ -C "$msinfo" \ -M /dev/scd1 \ -A "$application_id" \ -P "$publisher_id" \ -p "$preparer_id" \ -V "$vol_id" \ -sysid "$sys_id" \ -o $ISO_image_i $build_dir if [ $? -eq 0 ]; then /tmp/cdrecord -v dev=1,0 driveropts=burnproof fs=4m speed=12 -multi -eject $ISO_image_i fi The second session mkisofs job fails with a large numbers of rr_moved errors, eg. /tmp/mkisofs: Error: '/rr_moved/vars' and '/rr_moved/vars' have the same Rock Ridge name 'vars'. /tmp/mkisofs: Error: '/rr_moved/tying_scalars' and '/rr_moved/tying_scalars' have the same Rock Ridge name 'tying_scalars'. /tmp/mkisofs: Error: '/rr_moved/tying_hashes' and '/rr_moved/tying_hashes' have the same Rock Ridge name 'tying_hashes'. /tmp/mkisofs: Error: '/rr_moved/Tie_SubstrHash' and '/rr_moved/Tie_SubstrHash' have the same Rock Ridge name 'Tie_SubstrHash'. /tmp/mkisofs: Error: '/rr_moved/Time_Local' and '/rr_moved/Time_Local' have the same Rock Ridge name 'Time_Local'. /tmp/mkisofs: Error: '/rr_moved/Tie_Scalar' and '/rr_moved/Tie_Scalar' have the same Rock Ridge name 'Tie_Scalar'. /tmp/mkisofs: Error: '/rr_moved/Tie_Hash' and '/rr_moved/Tie_Hash' have the same Rock Ridge name 'Tie_Hash'. /tmp/mkisofs: Error: '/rr_moved/tying_arrays' and '/rr_moved/tying_arrays' have the same Rock Ridge name 'tying_arrays'. /tmp/mkisofs: Error: '/rr_moved/Text_Soundex' and '/rr_moved/Text_Soundex' have the same Rock Ridge name 'Text_Soundex'. /tmp/mkisofs: Error: '/rr_moved/Text_Tabs' and '/rr_moved/Text_Tabs' have the same Rock Ridge name 'Text_Tabs'. etc... I have grepped the docs but cannot find the answer. I did find an old reply from Joerg at http://lists.berlios.de/pipermail/cdrecord-developers/2001-November/000012.html explaining this is an mkisofs bug but that was two years ago and related to mkisofs vers. 1.14. I'm running cdrtools-2.00.3 & Linux-2.4.19. What should I do? Thanks Tom -- Tom Crane, Dept. Physics, Royal Holloway, University of London, Egham Hill, Egham, Surrey, TW20 0EX, England. Email: [EMAIL PROTECTED] Fax: +44 (0) 1784 472794 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

