Re: copy DVD
James Griffith wrote:
I have looked at copying DVD's on Google and haven't found much on how
to copy them in Linux, I know about ripping and encoding them in
windows, but I want to do both in Linux. Any how-tos or any advice would
be appreciated greatly.
James
Copying DVD: From my own old documentation
********************************************************
For copying a DVD bit-by-bit and record it later to another DVD, use:
dd if=/dev/hdd of=/disk-video/foo.iso
This will copy all data to the iso image foo.iso
To write the DVD use growisofs
growisofs -dvd-compat -Z /dev/hdd=/disk-video/foo.iso
/*growisofs uses builtin 'dd' command to write the iso image
its similar to using dd if=/disk-video/foo.iso of=/dev/hdd
*/
*******************************************************
This all came from Google searches!
Good Luck.
/KS
Reply to:
- References:
- copy DVD
- From: "James Griffith" <jbg@qwest.net>