Hello,

Under linux, I can mount my DVD-R without problem, but OSX says
me they are empty ???

Any idea why and what sould be done ?

I use this small script to write my DVD :

#!/bin/bash
if [ -z "$1" ]; then
        echo "usage : $0 DVD_title DVD_dir [write speed]"
        echo "That will write a DVD with data structure."
        exit
fi

if [ -z "$3" ]; then
S=4
else
S=$3
fi
hdparm -c1 -d1 /dev/hdc
growisofs -speed=$S -Z /dev/hdc -f -J -r -graft-points -V $1 $2
mount /mnt/cdrom4
ls -alh /mnt/cdrom4
DF
umount /mnt/cdrom4
eject /dev/hdc

Thank you :-)
-- 
        Gr�goire Favre
___________________________________________________________________
http://magma.epfl.ch/Gregoire.Favre mailto:[EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to