LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-08-2005, 05:24 PM   #1
d1l2w3
Member
 
Registered: May 2004
Location: Amboy WA USA
Distribution: Mandriva 2007
Posts: 366

Rep: Reputation: 30
problem copying a dvd


Recently copied several home movies onto a dvd via camcorder.
Plug camcorder into dvdrecorder that is attached to TV,
watch movies and record at the same time.
Recorded dvd works great.
Oringinal movies and camcorder are gone. Daughter and family went home.
However, can not make copies of dvd for other family members.
Error message is:
[root@192 don]# mount /mnt/cdrom2
/dev/hde: Invalid argument
mount: /dev/hde: can't read superblock

Is there anyway to make copies of this dvd?
'dd' or something like it?
 
Old 09-08-2005, 05:56 PM   #2
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
I'm suspecting that your /etc/fstab lists /dev/cdrom2 as of type iso9660. DVDs use UDF filesystem, so you can edit /etc/fstab and change "iso9660" to "iso9660,udf".

That will let you mount it, but it's not necessary to mount a DVD to copy it:

dd if=/dev/hde of=dvd.iso bs=32k

That will copy from /dev/hde to the file dvd.iso in the current directory (assuming /dev/hde is the DVD drive).

To make a copy, put a blank DVD into the DVD burner and:

dd if=dvd.iso of=/dev/hde bs=32k

Last edited by macemoneta; 09-09-2005 at 07:16 AM.
 
Old 09-08-2005, 07:16 PM   #3
d1l2w3
Member
 
Registered: May 2004
Location: Amboy WA USA
Distribution: Mandriva 2007
Posts: 366

Original Poster
Rep: Reputation: 30
[root@192 don]# dd if=/dev/hde of=dvd.iso bs=32k
dd: reading `/dev/hde': Input/output error
0+0 records in
0+0 records out
[root@192 don]#

I changed /etc/fstab as suggested with iso9660,UDF and get the following;
[root@192 don]# mount /dev/hde
mount: fs type UDF not supported by kernel
[root@192 don]#
 
Old 09-08-2005, 10:59 PM   #4
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
OK, two things. It appears your DVD drive is not /dev/hde or it is not recognizing the media, and your kernel was compiled without support for the filesystem used on DVDs (which is unusual these days).

However, like I said, you don't need to mount the DVD to copy it. Your first order of business is to verify which drive is your DVD burner. Try this:

eject /dev/hde

Did the DVD burner tray open? If not, check your /etc/fstab for alternative removable media drives. Issue the eject command for it to verify that you have the correct drive, insert the DVD into the burner, and retry the dd command.
 
Old 09-09-2005, 12:19 AM   #5
d1l2w3
Member
 
Registered: May 2004
Location: Amboy WA USA
Distribution: Mandriva 2007
Posts: 366

Original Poster
Rep: Reputation: 30
eject /dev/hde is correct.
/dev/hde has the dvd in it.
eject /dev/hdc is also correct.

With a dvd in /dev/hde I get:
[root@192 don]# dd if=/dev/hde of=dvd.iso bs=32k
dd: reading `/dev/hde': Input/output error
0+0 records in
0+0 records out

It must not be recognizing the media.
 
Old 09-09-2005, 12:54 AM   #6
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
Are you sure that you are not using a blank disc because it will give you the same error.

dd if=/dev/hde of=dvd.iso conv=noerrors bs=2048

The above will do a real sector by sector copy. If the disc does not work in your drive, I suggest buying a different DVD-ROM brand or use another computer that has one. You could have DVD-R or DVD+R disc brand that does not work well for your drive. Your family members will also have the same problems.

Its udf not UDF. Mandrake should have support for it. It is better to use auto instead of iso9660,udf.
 
Old 09-09-2005, 01:16 AM   #7
d1l2w3
Member
 
Registered: May 2004
Location: Amboy WA USA
Distribution: Mandriva 2007
Posts: 366

Original Poster
Rep: Reputation: 30
Results from two different cd/dvd-rw's.
Below is /etc/fstab

[root@192 don]# dd if=/dev/hde of=dvd.iso conv=noerrors bs=2048
dd: invalid conversion: `noerrors'
Try `dd --help' for more information.
[root@192 don]# dd if=/dev/hdc of=dvd.iso conv=noerrors bs=2048
dd: invalid conversion: `noerrors'
Try `dd --help' for more information.

There are two cd/dvd-rw's in this box.

# This file is edited by fstab-sync - see 'man fstab-sync' for details
/dev/hdb1 / ext3 defaults 1 1
/dev/hdd1 /data ext3 defaults 1 2
/dev/hdc /mnt/cdrom auto user,iocharset=iso8859-1,noauto,ro,exec 0 0
/dev/fd0 /mnt/floppy auto umask=0022,user,iocharset=iso8859-1,sync,codepage=850,noauto,exec,users 0 0
#/dev/fd0 /mnt/floppy auto fs=ext2:vfat,--,umask=0022,user,iocharset=iso8859-1,sync,codepage=850 0 0
/dev/hda1 /mnt/windows vfat umask=0022,iocharset=iso8859-1,codepage=850 0 0
none /proc proc defaults 0 0
/dev/hdb5 swap swap defaults 0 0
/dev/hde /mnt/cdrom2 auto umask=0022,user,iocharset=iso8859-1,sync,codepage=850,noauto,ro,exec,users 0 0
 
Old 09-09-2005, 07:14 AM   #8
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Have you tried the disk in the other drive (hdc)?
 
Old 09-09-2005, 11:21 AM   #9
d1l2w3
Member
 
Registered: May 2004
Location: Amboy WA USA
Distribution: Mandriva 2007
Posts: 366

Original Poster
Rep: Reputation: 30
Yes.
With the same results.
 
Old 09-09-2005, 11:44 AM   #10
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Then media incompatibility is likely the problem. Your drives may simply not be compatible with the type (DVD+-R DVD+-RW, DVD-RAM) or manufacturer of the DVD you are trying to copy.
 
Old 09-09-2005, 12:03 PM   #11
d1l2w3
Member
 
Registered: May 2004
Location: Amboy WA USA
Distribution: Mandriva 2007
Posts: 366

Original Poster
Rep: Reputation: 30
I've used both to write many CD's and DVD's.
Both '+' and '-'.
The brand DVD+R I'm trying to write to is Memorex.
I'll try later today at a friends house.

Would the TV dvdrecorder be the cause?
It is an Emerson.
 
Old 09-09-2005, 12:32 PM   #12
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
If the disk plays in a standard DVD player, it should not be anything unusual. The name on the disk (Memorex in this case) has little to do with the manufacturer. Memorex DVDs are made by CMC, Richoh, Fuji, MBI, MCC, Princo, Prodisk, Ritek, Taiyo Yuden, TDK, and others. Each DVD has a media code that the drive must recognize, or it will refuse to use the disk.

You can try looking at the web sites for your DVD drive manufacturer, to see if they have a firmware update available for either (or both) of your drives. Updating the drive firmware will usually update the media list in addition to fixing any major bugs.
 
Old 09-09-2005, 03:47 PM   #13
tekkieman
Member
 
Registered: Dec 2004
Location: Northern CA
Distribution: Mepis 6.5
Posts: 123

Rep: Reputation: 15
I just reread this entire thread, and it then struck me that you twice mentioned dvd recorder. If the disk was not finalized on the recorder, then you will have significant trouble reading it.

My best suggestion is to reinsert the dvd into the recorder and finalize it. If that fails to yield any results, I would then suggest trying to rip the vobs from the dvd. The dvd does not need to be mounted (or playable) to do this (I think). Here's where I get myself in trouble...I can't really tell you how to do this. I do it weekly with dvds I've recorded, but I do it in Windows using TDA. Under linux, vobcopy comes to mind, but you would need someone with some experience with it to tell you how it's done. Once the vob(s) are ripped to your HD, you could use something like qdvdauthor or tovid to create a new dvd structure, and k3b to burn it.

Hope this helps.
 
Old 09-09-2005, 03:58 PM   #14
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
PC DVD drives don't have a problem with disks that are not finalized. That's how multi-session disks are created. A standard-alone DVD player is where you will typically see a problem.
 
Old 09-09-2005, 04:26 PM   #15
tekkieman
Member
 
Registered: Dec 2004
Location: Northern CA
Distribution: Mepis 6.5
Posts: 123

Rep: Reputation: 15
Quote:
Originally posted by macemoneta
PC DVD drives don't have a problem with disks that are not finalized. That's how multi-session disks are created. A standard-alone DVD player is where you will typically see a problem.
True in the sense that they don't have problems reading the disk structure, but the media player software can certainly have a problem with it.
 
  


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
DVD Copying (How - TO) apinta10 Linux - Software 1 04-08-2005 08:55 AM
copying dvd Pedroski Linux - Hardware 10 02-28-2005 01:45 AM
dvd copying afrodocter Linux - Software 4 01-21-2005 11:18 AM
Dvd Copying questions gianh Linux - Software 2 08-16-2004 10:17 AM
dvd copying Pedroski Linux - Software 8 02-21-2004 06:42 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:47 AM.

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