Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Discussion & Documentation Documentation, Tips & Tricks
  • Search

How to backup DVDs to DVD+R

Unofficial documentation for various parts of Gentoo Linux. Note: This is not a support forum.
Post Reply
Advanced search
95 posts
  • 1
  • 2
  • 3
  • 4
  • Next
Author
Message
paulisdead
Guru
Guru
User avatar
Posts: 510
Joined: Wed Apr 10, 2002 3:42 am
Location: Seattle, WA

How to backup DVDs to DVD+R

  • Quote

Post by paulisdead » Wed Jul 30, 2003 9:19 am

Well after many hours of toiling and burning coasters, I've finally managed to backup a DVD to a DVD+R that should play on ROMS and standalone players. I figured I'd share the knowledge to save others the hassle. This will only work with 1 side of a DVD or a single sided DVD. This guide's only intended for DVD+R drives, though it shoudl work with DVD+RW.

Here's what you will need

dvd+rw-tools dvdrtools and dvdbackup
also you will need udf read and write support in the kernel or as modules. I'll assume the same drive is the source and end destination. SCSI emulation working on the drive is a must as far as I know.

First you need to make the image of the DVD on the hard drive.

Code: Select all

dvdbackup -M -i /dev/scsi/host0/bus0/target0/lun0/cd -o /home/user/dvd
now we need to make sure it didn't miss anything on the DVD. So we're going to mount it and copy some more stuff over, but say no to overwriting any files.

Code: Select all

mount -t udf -o ro /dev/scsi/host0/bus0/target0/lun0/cd /mnt/cdrom
cd /mnt/cdrom/VIDEO_TS/
cp -i *.IFO /home/user/dvd/NameOfDVD
cp -i VIDEO_TS* /home/user/dvd/NameOfDVD
cd /home/user/dvd
umount /mnt/cdrom
Remember not to overwrite any of the above files, this is just to make sure nothing was missed. Next we need to make the image of the DVD to prepare it for burning.

Code: Select all

mkisofs -dvd-video -v -o /home/user/dvd/NameOfDVD.iso /home/user/dvd/NameOfDVD
OK, now we're ready to burn the DVD. You'll probably want to do this as root, since I don't think it can use the built in dd command as a user.

Code: Select all

growisofs -Z /dev/scsi/host0/bus0/target0/lun0/cd=/home/user/dvd/NameOfDVD.iso
OK that should make you a backup of the DVD. Works fine with my 4x NEC DVD+R

*edit* you might be able to get DVDs larger than 4.4GBs to copy by only copying the feature instead of the whole disk. So you'd use this dvdbackup command

Code: Select all

dvdbackup -i /dev/scsi/host0/bus0/target0/lun0/cd -v -F -o /home/user/dvd
"we should make it a law that all geeks have dates" - Linus
Top
bogey
n00b
n00b
User avatar
Posts: 40
Joined: Fri May 16, 2003 6:09 pm
Location: USA

tried similar...

  • Quote

Post by bogey » Mon Aug 04, 2003 1:36 pm

I used a guide...
http://www.frogcement.com/html/dvd/linu ... rning.html

This is basically the same as your info, using the -F feature you mentioned. However, I still had a problem. Even using the -F flag, the files were above 4.7 GB when I do a du -h.

Does anyone know how to determine which files are features I can take out (ie other languages, etc)?

-bogey
Top
bogey
n00b
n00b
User avatar
Posts: 40
Joined: Fri May 16, 2003 6:09 pm
Location: USA

dvdr

  • Quote

Post by bogey » Tue Aug 05, 2003 1:09 pm

Found this site that is helpful...

www.dvdrhelp.com

-bogey
Top
SNo0py
Apprentice
Apprentice
User avatar
Posts: 270
Joined: Fri Jul 12, 2002 8:01 am
Location: Vienna, Austria
Contact:
Contact SNo0py
Website

Re: tried similar...

  • Quote

Post by SNo0py » Sun Aug 17, 2003 3:02 pm

bogey wrote:I used a guide...
http://www.frogcement.com/html/dvd/linu ... rning.html

This is basically the same as your info, using the -F feature you mentioned. However, I still had a problem. Even using the -F flag, the files were above 4.7 GB when I do a du -h.

Does anyone know how to determine which files are features I can take out (ie other languages, etc)?

-bogey
Same problem :(

Any solution yet?
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
Top
ZuluX
n00b
n00b
Posts: 1
Joined: Tue Aug 26, 2003 10:05 pm

  • Quote

Post by ZuluX » Wed Aug 27, 2003 5:22 pm

One solution would be to backup the entire dvd then use dvd shrink under wine to reencode reauthor the dvd

dvd shrink is free

:D
Top
SNo0py
Apprentice
Apprentice
User avatar
Posts: 270
Joined: Fri Jul 12, 2002 8:01 am
Location: Vienna, Austria
Contact:
Contact SNo0py
Website

  • Quote

Post by SNo0py » Thu Aug 28, 2003 11:27 am

Yeah, the solution "dvdbackup + wine/dvdshrink + growisofs" works perfectly!!!
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
Top
rectrix
n00b
n00b
Posts: 3
Joined: Wed Jan 08, 2003 3:32 am

SCSI emulation not required

  • Quote

Post by rectrix » Sun Oct 12, 2003 11:10 am

And root perms are not required either.

I've used growisofs on kernel 2.6.0-test6 w/o scsi emulation and with a "normal" user with no problems for paulisdead's last step:

Code: Select all

growisofs -Z /dev/ide/host0/bus0/target1/lun0/cd=/my/dvd_image.iso
worked like a charm - thanks for the HOWTO!
Top
viperlin
Veteran
Veteran
Posts: 1319
Joined: Tue Apr 15, 2003 5:50 pm
Location: UK

  • Quote

Post by viperlin » Thu Oct 16, 2003 9:06 pm

growisofs is in which ebuild?
Top
viperlin
Veteran
Veteran
Posts: 1319
Joined: Tue Apr 15, 2003 5:50 pm
Location: UK

  • Quote

Post by viperlin » Sat Oct 18, 2003 6:04 pm

can someone please tell me where growisofs is located, kernel option, in an ebuild package, where?

EDIT: eventually i found it: dvd+rw-tools
Top
SNo0py
Apprentice
Apprentice
User avatar
Posts: 270
Joined: Fri Jul 12, 2002 8:01 am
Location: Vienna, Austria
Contact:
Contact SNo0py
Website

  • Quote

Post by SNo0py » Mon Oct 20, 2003 2:15 pm

You are right ;)
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
Top
activ
n00b
n00b
Posts: 49
Joined: Thu Oct 17, 2002 5:04 pm

  • Quote

Post by activ » Mon Oct 27, 2003 8:19 pm

growisofs is part of DVD+RW-tools
Top
dtessier
n00b
n00b
User avatar
Posts: 67
Joined: Thu Jan 23, 2003 4:17 pm
Location: Mission Viejo, CA

  • Quote

Post by dtessier » Wed Oct 29, 2003 8:45 am

For those of you that have gotten dvdshrink to work under wine, how did you get it to work? Any DLL's required? I can run the 3.0 Beta 5, but when I re-author, I'm not able to either drag-and-drop or copy and paste things from one window to the other.

Right now I'm running dvdshrink on my wife's PC, but it's much slower than mine :D Any help would be greatly appreciated.
Dan
Top
SNo0py
Apprentice
Apprentice
User avatar
Posts: 270
Joined: Fri Jul 12, 2002 8:01 am
Location: Vienna, Austria
Contact:
Contact SNo0py
Website

  • Quote

Post by SNo0py » Thu Oct 30, 2003 8:54 am

No DLLs are required.
Use the context-menu to copy and paste the files.
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
Top
dtessier
n00b
n00b
User avatar
Posts: 67
Joined: Thu Jan 23, 2003 4:17 pm
Location: Mission Viejo, CA

  • Quote

Post by dtessier » Fri Oct 31, 2003 7:29 am

I've been trying to... I can select the item I want, right-click to choose copy, then right-click in the destination window to select paste, but nothing happens!
Dan
Top
viperlin
Veteran
Veteran
Posts: 1319
Joined: Tue Apr 15, 2003 5:50 pm
Location: UK

  • Quote

Post by viperlin » Sun Nov 02, 2003 7:03 pm

which version of DVD shrink are you guys using, i can't get Title1 to copy over on the reauthor either. (right click does nothing)
Top
paulisdead
Guru
Guru
User avatar
Posts: 510
Joined: Wed Apr 10, 2002 3:42 am
Location: Seattle, WA

  • Quote

Post by paulisdead » Sun Nov 02, 2003 8:18 pm

Has anyone gotten LVE http://home.arcor.de/gmo18t/lve/ to work? I tried about a month or so ago, and couldn't get it to go. I can't remember what was wrong, but maybe it's been fixed recently, since it looks like they've done a lot of updates in October. If anyone takes a crack at it, you'll need to grab the version of ffmpeg from their site as well as LVE, and when you run ./configure you need to do it as "./configure --prefix=/usr/local" since that's where it wants ffmpeg and LVE to be installed. I'll try taking another crack at it today if I have time.
"we should make it a law that all geeks have dates" - Linus
Top
lawrence
n00b
n00b
Posts: 6
Joined: Tue Nov 11, 2003 7:20 pm

does not work :(

  • Quote

Post by lawrence » Tue Nov 11, 2003 7:40 pm

I have problems getting burned DVDs to work with my DVD-player (Pioneer DV-444). DVD-player just says that it cannot play the media.

First I did

Code: Select all

dvdbackup -M -i /dev/ide/host0/bus1/target0/lun0/cd -o /dvd

Then I used DVDShrink to fit movie to media. Next I did two different images from files that DVDShrink created, ISO and UDF.

Code: Select all

mkisofs -dvd-video -v -o /dvd/matrix.iso /dvd/MATRIX

Code: Select all

mkisofs -dvd-video -v -o /dvd/matrix.udf   /dvd/MATRIX 
I burned images

Code: Select all

growisofs -Z /dev/ide/host0/bus1/target0/lun0/cd=/dvd/matrix.iso

Code: Select all

growisofs -Z /dev/ide/host0/bus1/target0/lun0/cd=/dvd/matrix.udf
But they don’t work with my DVD-player. Any ideas why? I use Linux 2.6-test8/9. If I use Windows 2000 + DVDShrink and Nero, burned DVD works in my player without problems. I don’t want to move back to Windows. Help!
Top
viperlin
Veteran
Veteran
Posts: 1319
Joined: Tue Apr 15, 2003 5:50 pm
Location: UK

  • Quote

Post by viperlin » Tue Nov 11, 2003 8:41 pm

check the files are in a VIDEO_TS folder in the ISO and on the DVD
Top
lawrence
n00b
n00b
Posts: 6
Joined: Tue Nov 11, 2003 7:20 pm

  • Quote

Post by lawrence » Wed Nov 12, 2003 3:08 am

viperlin wrote:check the files are in a VIDEO_TS folder in the ISO and on the DVD
Files are in VIDEO_TS folder.
Top
SNo0py
Apprentice
Apprentice
User avatar
Posts: 270
Joined: Fri Jul 12, 2002 8:01 am
Location: Vienna, Austria
Contact:
Contact SNo0py
Website

  • Quote

Post by SNo0py » Thu Nov 13, 2003 12:28 pm

Add an empty AUDIO_TS folder. And you don't need the ISO-stuff!
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
Top
viperlin
Veteran
Veteran
Posts: 1319
Joined: Tue Apr 15, 2003 5:50 pm
Location: UK

  • Quote

Post by viperlin » Thu Nov 13, 2003 5:59 pm

SNo0py wrote:Add an empty AUDIO_TS folder. And you don't need the ISO-stuff!
this has never been required in my experience, actually having an AUDIO_TS can stop it working on some DVD players
Top
kwiqsilver
Guru
Guru
User avatar
Posts: 360
Joined: Wed Mar 19, 2003 6:04 am

  • Quote

Post by kwiqsilver » Sat Nov 15, 2003 1:31 am

Is there a way to shrink a big dvd without using wine?
Top
lucindrea
n00b
n00b
Posts: 50
Joined: Sun Nov 09, 2003 7:11 pm

Re: dvdr

  • Quote

Post by lucindrea » Sat Nov 15, 2003 2:12 am

bogey wrote:Found this site that is helpful...

www.dvdrhelp.com

-bogey
good dplace to start .. the experts hang out at
www.doom9.org :wink:
Top
SNo0py
Apprentice
Apprentice
User avatar
Posts: 270
Joined: Fri Jul 12, 2002 8:01 am
Location: Vienna, Austria
Contact:
Contact SNo0py
Website

  • Quote

Post by SNo0py » Sat Nov 15, 2003 12:56 pm

kwiqsilver wrote:Is there a way to shrink a big dvd without using wine?
Yes, Windows ;)

No, actually there is no way... :(
Sex is like hacking. You get in, you get out, and you hope you didnt leave something behind that can be traced back to you.
Top
castra
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 86
Joined: Tue Aug 12, 2003 7:59 pm

  • Quote

Post by castra » Wed Dec 17, 2003 2:36 pm

Trying to do the same but can't pass the second thing
dvdbackup -M -i /dev/scsi/host0/bus0/target0/lun0/cd -o /home/xxx/dvd

and this is the output
dvdbackup -M -i /dev/scsi/host0/bus0/target0/lun0/cd -o /home/xxx/dvd
libdvdread: Using libdvdcss version 1.2.8 for DVD access

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000151
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x00000190
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x000016c8
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x000031e8
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x00006c40
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_0.VOB at 0x000d493d
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x000d685b
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_0.VOB at 0x000dec58
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_04_1.VOB at 0x000dec5d
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_05_0.VOB at 0x000e50b6
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_05_1.VOB at 0x000e50bb
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_06_0.VOB at 0x000ecaf9
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_06_1.VOB at 0x0010f225
libdvdread: Elapsed time 0
libdvdread: Found 6 VTS's
libdvdread: Elapsed time 0
Error reading MENU VOB
Mirror of Title set 1 faild
Mirror of DVD faild
I guess it can't get pass the protection ?
Ideas ?
Top
Post Reply

95 posts
  • 1
  • 2
  • 3
  • 4
  • Next

Return to “Documentation, Tips & Tricks”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy