LinuxQuestions.org
Help answer threads with 0 replies.
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 01-21-2003, 08:48 AM   #1
malcolm
LQ Newbie
 
Registered: Jan 2002
Location: newcastle u.k
Distribution: RH 8.0
Posts: 16

Rep: Reputation: 0
Angry My dvd drive reads cd's but not dvd's


I have an athlon motherboard dualbooting rh 8.0 and win xp. All is fine in xp.
In rh 8 however I have several outstanding issues with which I could do with some advice.
The most important currently is that my dvd is not being read. It is a combo device and when a disk is put in it spins up leds flash etc, but the system does nothing with the disk. I get a lot of my software from dvd and need this working.

If I put a cd in the drive all is ok.

fstab looks like this..........
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
LABEL=/home /home ext3 defaults 1 2
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
LABEL=/usr /usr ext3 defaults 1 2
LABEL=/var /var ext3 defaults 1 2
/dev/hdb8 swap swap defaults 0 0
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,kudzu,ro 0 0
/dev/cdrom1 /mnt/cdrom1 iso9660 noauto,owner,kudzu,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0
..............................
the cdrom is at /dev/hdd where I would expect it be
the dvd is at /dev/scd0 which I suppose might also be correct.
So the 1st question is why does it not read dvd's but it will read cd's.
 
Old 01-21-2003, 09:17 AM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Well what or how are you trying to read these DVD's ? Are they data cd's or actual movies ? You need a program like mplayer ( highly recommended ) to play movie DVD's.

More details please, cause if your trying to mount a DVD media disk, that isn't gonna fly.
 
Old 01-21-2003, 09:21 AM   #3
malcolm
LQ Newbie
 
Registered: Jan 2002
Location: newcastle u.k
Distribution: RH 8.0
Posts: 16

Original Poster
Rep: Reputation: 0
these are always computer magazine dvd's, I use them to try out new stuff, but also to quickly get at upgrades, utils etc,
 
Old 01-21-2003, 10:00 AM   #4
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Are you even trying to mount them? Maybe the cd's will automount, however the dvd's won't (just a thought, not a fact). Try mounting them with:
mount -t iso9660 /dev/hdd /mnt/cdrom

When you have these DVD's mounted and workin in win, try right clicking and choosing properties on the drive itself. Look at the filesystem entry, check to see if it has is09660 listed as the filesystem, if not, take note of what it says and post it here, also try mounting using that filesystem.

Cool
 
Old 01-21-2003, 01:13 PM   #5
malcolm
LQ Newbie
 
Registered: Jan 2002
Location: newcastle u.k
Distribution: RH 8.0
Posts: 16

Original Poster
Rep: Reputation: 0
progress

It turns out that I get dvd's from 3 pc magazines.
2 use the udf system, I have set my fstab to mount the udf filesystem and after manually mounting them I can now read them.
The other , and wouldn't you beleive it, most important magazine (Linux Format) is using the cdfs filesytem. My system says that is not supported. So how do I read the udf disks. I suspect I'm going to have to do some magic with the kernel here.
 
Old 01-21-2003, 04:00 PM   #6
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Cool, so you've got 2 taken care Now for the cdfs, here's a link to a project you may be interested in (I'm at work and cannot read about it):
http://freshmeat.net/projects/cdfs/?topic_id=118%2C142

And you may want to read this:
http://www.cs.helsinki.fi/linux/linu...1-10/0250.html

Cool
 
Old 01-21-2003, 05:04 PM   #7
malcolm
LQ Newbie
 
Registered: Jan 2002
Location: newcastle u.k
Distribution: RH 8.0
Posts: 16

Original Poster
Rep: Reputation: 0
I,ve had a quick look at it and am printing it as we speak to digest later.
However of course now when I put a normal cd into the drive, they aren't read. is it possible to set the system up to raed IS)9660 and udf .

I haven't even dared to think what will happen when I try to write with this drive, (did I mention it was a dvd/cdrw combo drive).

BTW As I stated at the start of this thread I am currently dual booting xp and rh8.0, but can't see a windows mnt. My version of XP was loaded as fat32, does linux handle this, I know it does vfat. I have put a windows directory in the /mnt folder but of course I wont be able to see the xp stuff If I can't mount it.
Thanks for your help so far by the way.
 
Old 01-21-2003, 08:23 PM   #8
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Quote:
Originally posted by malcolm
I,ve had a quick look at it and am printing it as we speak to digest later.
However of course now when I put a normal cd into the drive, they aren't read. is it possible to set the system up to raed IS)9660 and udf .
You can try changing the filesystem to "auto". If it does a decent job guessing the filesystem then you are in luck, however I'd say you are probably going to either want to make a seperate entry for the DVD's. Something like:
/dev/cdrom /mnt/cdrom iso9660 defaults 0 0
/dev/dvd /mnt/dvd udf defaults 0 0
And then just make sure both of the mount points exist, and both of the /dev actually point to your device. Then to mount (depending in the media) you:
mount /mnt/dvd OR
mount /mnt/cdrom
Quote:

I haven't even dared to think what will happen when I try to write with this drive, (did I mention it was a dvd/cdrw combo drive).
Don't be, it will go nice and smooth as long as you have the scsi emulation going... A search will reveal more on that.
Quote:

BTW As I stated at the start of this thread I am currently dual booting xp and rh8.0, but can't see a windows mnt. My version of XP was loaded as fat32, does linux handle this, I know it does vfat. I have put a windows directory in the /mnt folder but of course I wont be able to see the xp stuff If I can't mount it.
Thanks for your help so far by the way.
Not sure I quite follow you on this one. You have XP, it's living on a fat32 filesystem. Find which device it's living on with:
fdisk -l
Then mount the device wherever you'd like after modprobing the filesystem:
modprobe vfat
Then mount with:
mount -t vfat /dev/hdX /mnt/wherever
If you want that to always mount on bootup try adding this to your /etc/fstab:
/dev/hdX /mnt/wherever vfat users,owner,umask=022 0 0

adjusting each entry to your needs/desires. To find out more information about the options section (usually contains 'defaults') see man mount.

Cool
 
Old 01-23-2003, 04:35 PM   #9
malcolm
LQ Newbie
 
Registered: Jan 2002
Location: newcastle u.k
Distribution: RH 8.0
Posts: 16

Original Poster
Rep: Reputation: 0
thanks for that.
I had just got the dvd going again doing just as you suggest using auto suggested to me by someone else, but thanks for the rest of the post will try it all tommorrow.
I'm getting there
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
mounting cd's , dvd's problems HELP!!!!! resego Linux - Newbie 15 03-21-2005 11:32 AM
k3b writes cd's but not dvd's petermcp Mandriva 5 02-15-2005 03:50 AM
Cd's work but DVD's wont... drzigman Linux - Hardware 0 01-05-2005 02:29 AM
DVD-ROM drive only reads CDROMs after upgrade to 10.0 choicebox Mandriva 0 04-19-2004 07:50 AM
DVD drive - plays cd's - not playing dvd's quantumechanix Linux - Hardware 7 11-01-2003 07:37 PM

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

All times are GMT -5. The time now is 07:25 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