> > Could it be using this? http://en.wikipedia.org/wiki/ARccOS
>
> Would it then make sense that vobcopy can rip a decrypted backup from
> the disc but not from a disc image?
Possibly, because dd would trip up on the deliberate errors.
I'm tweaking that script you wrote. Here's what I have:
#!/bin/bash
echo Enter DVD filename:
read FILENAME
mount /dev/cdrom
TITLE=$(vobcopy -I 2>&1 | awk '/DVD-name:/ {print $3}')
vobcopy -m || exit
mkisofs -dvd-video -V $TITLE -o $FILENAME $TITLE || exit
rm -rf $TITLE
umount /dev/cdrom
Can you tell me what purpose the "|| exit" portions serve? Also, how
can I run the script by typing /path/to/getdvd? I've tried:
chmod +x getdvd
and:
chmod 0777 getdvd
with no luck.
- Grant
--
gentoo-user@gentoo.org mailing list