How do I copy DVDs

Preamble:

We are down to the final stages for creating a school-play dvd. Editing is almost done, discs are printed and ready. Just need to burn the dvd’s now. However, doing our pencil calculations, if we burned every disc with our production computer ( Apple G5 , taking a estimated 10-20 minutes ) we don’t really have enough time to finish all the DVD’s ( 100 or so ) before deadline. ( 11 hours away ).

The solution to this problem is to include my linux laptop into the burning process to reduce the workload.

So my question is:

If I had one DVD ( no security encryptions or licencing issues ) and I wanted to make 20 perfect copies really fast. What tools would I need and and what how would I use them?
Would prefer command line here.

Bonus question:

Any tips on speeding up the Apple’s Burn Proccess? Using Pro Studio 4.

Asked By: Stefan

||

Not very difficult.

dd if=/dev/dvd of=saved.iso

for i in {1..20}; do
    eject /dev/dvd
    read -p 'Insert disc and press RETURN: '
    eject -t /dev/dvd
    growisofs -Z /dev/dvd=saved.iso
done
eject /dev/dvd
Answered By: ephemient

If you don’t want to go through the command line, k3b is the KDE burning software. I’m not sure what gnome would use.

Answered By: Falmarri
Categories: Answers Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.