[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

discs written by growisofs not readable on OSX ?



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:Gregoire.Favre@gmail.com



Reply to: