--I use a script for burning DVDs; don't forget to chmod +x it, and change where it does the "cd" to the directory you want to backup:
BEGIN bkpcdtemp2DVD+RW
#!/bin/sh
# Backup a directory to dvd+rw
# Enclose description in quotes
#NOTE: THIS METHOD has not been tested WITH DASH-RW MEDIA, ONLY +RW!
#source /usr/local/bin/cdrecord-wrapper.sh
cd /mnt/cdtemp2
# For stuff that's more than 4G
# Copy thisexec
cp -v $0 .
dirstobkp="."
#spd=8
#dvdrecord=cdrecord-prodvd-2.01a20-i686-pc-linux-gnu
# 123456789012
disklabel='bkpdrived'
#disklabel='vmwarekpxdvd'
# -P = publisher id
descrip1='bkp-drived-n-c-p901-rar-20050302'
#descrip1='vmware-knoppix-dvd-2.6-b4-sysvinit-update--only-24-works'
# -p = preparer id (both 128 chars)
descrip2='bkp-hd-drived-rar-100MBchunks-nocompr-part2of2'
#descrip2='vmware-linux-bkp'
df
echo '.'
echo "*** Backup $PWD $dirstobkp"
/bin/echo -e $disklabel '\n\r' $descrip1 '\n\r' $descrip2
echo '.'
/bin/echo -e ' *** Estimated size: \n \r' ` mkisofs -udf -print-size -quiet .`
echo ' *** PK if OK: '
read
# We need to use -udf with files/systems that are >2GB...
# If only doing FAT32, not need -udf.
# -udf \
time growisofs -dvd-compat -Z /dev/scd0 \
-T \
-r \
-J \
-joliet-long \
-V $disklabel \
-publisher $descrip1 \
-p $descrip2 \
-A $disklabel \
$dirstobkp
# -l \ # Allow full 31 character filenames.
# -T \ # Generate TRANS.TBL
# -r \ # Generate SUSP and RR records using the Rock
# \ # Ridge protocol to further describe the files on
# \ # the iso9660 filesystem.
# -J \ # Generate Joliet directory records in addition to
# \ # regular iso9660 file names.
# -V $disklabel \ # Volabel (12 chars?)
# -p "vmware linux bkp" \
# -A $disklabel \ # 128 chars
# http://www.mail-archive.com/
[email protected]/msg00251.html
i am so happy to have found Knoppix and that it works for my
my RAID HD failed and refuses to recognize in windows (even on new OS install)
so Knoppix to the rescue.. almost
all the data i want to save is on those RAID drives and knoppix sees it
AND i can burn CD's
BUT it truncates the file names. :(
all the settings i have tried so far dont give a different result.
what is the sollution to keeping my long file names intact when burning to DVD-r with k3b
thank you