LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-26-2004, 01:54 AM   #1
minm
Member
 
Registered: Jun 2003
Location: Canada
Distribution: suse 9.2
Posts: 582

Rep: Reputation: 30
problem making iso backup from dvd


Hi, when i try and backup a file i get this problem

dd: reading `/dev/hdd': Input/output error
3920+0 records in
3920+0 records out


Does anyone know why?

Thanks
 
Old 12-26-2004, 02:16 AM   #2
minm
Member
 
Registered: Jun 2003
Location: Canada
Distribution: suse 9.2
Posts: 582

Original Poster
Rep: Reputation: 30
btw i typed

dd if=/dev/hdd of=/home/mark/data.iso
 
Old 12-26-2004, 02:28 AM   #3
whipermr5
Member
 
Registered: Dec 2004
Location: Singapore
Distribution: Fedora Core 5 Linux
Posts: 202

Rep: Reputation: 30
Are you sure there's a recordable drive at /dev/hdd?
 
Old 12-26-2004, 02:37 AM   #4
minm
Member
 
Registered: Jun 2003
Location: Canada
Distribution: suse 9.2
Posts: 582

Original Poster
Rep: Reputation: 30
yeah it is
 
Old 12-26-2004, 03:13 AM   #5
minm
Member
 
Registered: Jun 2003
Location: Canada
Distribution: suse 9.2
Posts: 582

Original Poster
Rep: Reputation: 30
It seems to only make the iso files 1.5 megs then stops and gives me that error

help anyone?
 
Old 01-25-2005, 08:08 AM   #6
Elventhor
LQ Newbie
 
Registered: Jan 2005
Location: Finland
Distribution: Debian
Posts: 3

Rep: Reputation: 0
Hi!
If you have libdvdread and libcss and mplayer just do the following:
$ mplayer dvd://
mplayer then opens the dvd and plays it. You can esc it away as soon as the video window has been opened.
Then try the dd trick again
$ dd if=/dev/dvd of=image
The image will be done and you can play it with xine easily (just set the dvd-device to the image)
Haven't been able to burn the image to dvd-r though....
 
Old 01-25-2005, 04:44 PM   #7
Elventhor
LQ Newbie
 
Registered: Jan 2005
Location: Finland
Distribution: Debian
Posts: 3

Rep: Reputation: 0
Yeap. Spent the day experimenting and the only "good" way to do it is (AFAIK!):
(assuming that your dvd-r drive is /dev/dvd)
$ mkdir /tmp/dvdbackup
for the dvd dump
$ mkdir /tmp/mount
for mounting the dvd
$ dvdbackup -M -i /dev/dvd -o /tmp/dvdbackup
Let's rip the movie (-M takes a full copy (menus etc), -F grabs just the movie)
$ mount -t udf /dev/dvd /tmp/mount/
We need to mount the dvd for grabbing some IFO-files.
$ cp -i /tpm/mount/VIDEO_TS/*.IFO mount/VIDEO_TS/VIDEO_TS* dvdbackup/<something>/VIDEO_TS/
You need to change the something to whatever it is
Also, make sure to answer NO to any query for overwriting something.
$ mkisofs -dvd-video -v -o image.udf /tmp/dvdbackup/
Almost done, let's make a image we can burn to dvd-r..
$ growisofs -dvd-compat -Z /dev/dvd=image.udf
And finally, let's burn the bastard.

Dunno, works for me

Last edited by Elventhor; 01-25-2005 at 04:45 PM.
 
Old 02-07-2005, 05:18 PM   #8
ensnaregod
Member
 
Registered: Jul 2004
Location: tucson,AZ
Distribution: Debian
Posts: 37

Rep: Reputation: 15
haven't tried it but i have a question

I haven't tried it but i have a question.... If you have a DVD image thats larger than 4.7 Gigs then you will need to have a dual layer burner correct????? And if you don't have one and assuming that the previous statment is correct, then how can you burn a Movie or what ever you are ripping from to a single Layer DVD burner without rerencoding it?
 
Old 02-10-2005, 05:12 PM   #9
Elventhor
LQ Newbie
 
Registered: Jan 2005
Location: Finland
Distribution: Debian
Posts: 3

Rep: Reputation: 0
Quote:
If you have a DVD image thats larger than 4.7 Gigs then you will need to have a dual layer burner correct?
Correct.
Quote:
how can you burn a Movie or what ever you are ripping from to a single Layer DVD burner without rerencoding it?
Well, the movie may well fit into a 4.7Gig DVD, all you need to do is rip the menus and other unnecessary stuff away and just keep the movie.
If you're unlucky and the movie is >4.7Gig, you need to re-encode it.
 
Old 02-10-2005, 11:45 PM   #10
ensnaregod
Member
 
Registered: Jul 2004
Location: tucson,AZ
Distribution: Debian
Posts: 37

Rep: Reputation: 15
well i just want to rip the entire thing as if it was identical. is there a way to do that ? I don't think its possible to burn a dvd with dd
 
Old 02-17-2005, 12:58 AM   #11
minm
Member
 
Registered: Jun 2003
Location: Canada
Distribution: suse 9.2
Posts: 582

Original Poster
Rep: Reputation: 30
what i like to do with files over 4.7 gigs is to use cat and i can divide say a 6 gig iso file into 6 1 gig ones, burn them on two 4.7 gig discs then if i want to watch them on my computer i just throw all 6 files into one folder then recombine them and mount it

takes a lot of steps but it's good enough till dual layer goes down in price
 
Old 02-17-2005, 01:24 AM   #12
overlord73
Member
 
Registered: Apr 2004
Location: ..where no life dwells..
Posts: 541

Rep: Reputation: 30
Re: problem making iso backup from dvd

Quote:
Originally posted by minm
Hi, when i try and backup a file i get this problem

dd: reading `/dev/hdd': Input/output error
3920+0 records in
3920+0 records out


Does anyone know why?

Thanks
seams that dd cannot handle some copyprotections!
 
Old 02-17-2005, 03:34 PM   #13
ensnaregod
Member
 
Registered: Jul 2004
Location: tucson,AZ
Distribution: Debian
Posts: 37

Rep: Reputation: 15
??

how is it possible that dd something that copys direct binary can't copy that??
 
Old 02-17-2005, 05:16 PM   #14
cathectic
Member
 
Registered: Sep 2004
Location: UK, Europe
Distribution: Slackware64
Posts: 761

Rep: Reputation: 35
Code:
how is it possible that dd something that copys direct binary can't copy that??
Because the video data on commercial DVDs are encrypted using CSS. No DVD burners or media that you use allows you to copy the CSS key from the DVD to another disc (the media has the area for the CSS key already written over, and the burner won't let you access it anyway). Therefore, the video on the disc has to be decrypted first before it can be copied.

Therefore, whilst you can use dd, I would hardly recommend it, as I imagine it won't decode the video data first.

dvdbackup can decode the video, and also split the disc up if it's too large for a DVD5 (at the expense of losing subtitles) - but you need to know on what chapter or time to split it, and it isn't very informative of the size of any given number of chapters (usually splitting a movie in half is sufficient though.)

You can then use something like growisofs to then burn that straight to a DVD (since dvdbackup will already have produced a DVD compatible file format for you)
 
Old 12-23-2005, 06:35 PM   #15
jayme101501
LQ Newbie
 
Registered: Dec 2005
Posts: 1

Rep: Reputation: 0
question

Quote:
Originally Posted by minm
what i like to do with files over 4.7 gigs is to use cat and i can divide say a 6 gig iso file into 6 1 gig ones, burn them on two 4.7 gig discs then if i want to watch them on my computer i just throw all 6 files into one folder then recombine them and mount it

takes a lot of steps but it's good enough till dual layer goes down in price

Could you explain this to me in more detail? I have a 300 minute movie i want to burn and was wondering how to put it on 2 seperate discs? thanks
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with every DVD backup tools ! joe2280 Linux - Software 3 10-18-2005 12:00 PM
problem downloading DVD ISO image xprt64 Linux - Newbie 32 09-20-2005 04:15 PM
Making bootable Suse 9.3 DVD from 5-CD iso parsek77 SUSE / openSUSE 1 06-15-2005 11:16 AM
Making a DVD Install ISO... a3Rogue Slackware 2 06-26-2004 08:07 PM
slackware iso backup problem salahuddin_66 Slackware 3 05-17-2004 11:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:07 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration