LinuxQuestions.org
Review your favorite Linux distribution.
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 05-24-2006, 05:27 PM   #1
anatman
Member
 
Registered: May 2006
Location: NEWBIE!
Distribution: Ubuntu 6.06
Posts: 31

Rep: Reputation: 15
After I Installed DVD my CDROM stopped working


My Cdrom stoped working when I tried to install a new DVD player. Can't boot from either and can't play music. No movies too.

Last edited by anatman; 05-25-2006 at 09:55 AM.
 
Old 05-24-2006, 06:53 PM   #2
dcg
LQ Newbie
 
Registered: Jun 2004
Location: Ma
Posts: 14

Rep: Reputation: 0
I am newbie but if u try kscd, when the player comes up click on extra and then
configure u will probably have a choice to pick from either cdrom ,dvd ,:media
device choose whatever. the other thing u might look at is when u boot up go
to set up and look an your bootsequence to make sure cdrom or dvd is first on
boot list. Good Luck
 
Old 05-24-2006, 07:14 PM   #3
masonm
Senior Member
 
Registered: Mar 2003
Location: Following the white rabbit
Distribution: Slackware64 -current
Posts: 2,300

Rep: Reputation: 90
To boot from the devices, check out your BIOS settings to make sure they are correct for the new device configuration.

As for the linux access, did you update your fstab for the new configuration?
 
Old 05-24-2006, 07:47 PM   #4
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,694

Rep: Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894Reputation: 5894
It really doesn't matter which drive is master.

I assume that your CDRW drive used to be the master so its device ID was /dev/hdc. /dev/cdrom is a symbolic link that points to /dev/hdc but now the drive is actually /dev/hdd. Delete the link and recreate it using /dev/hdd.
ln -s /dev/hdd /dev/cdrom

I've never used a DVDRAM drive but AFAIK it is just like writing to any other removable media. I believe the drive needs to be configured for SCSI emulation using the hdc=ide-scsi option in your bootloader. I believe the device will be /dev/scd0.
 
Old 05-24-2006, 10:48 PM   #5
anatman
Member
 
Registered: May 2006
Location: NEWBIE!
Distribution: Ubuntu 6.06
Posts: 31

Original Poster
Rep: Reputation: 15
Thanks everybody.

dcg: In KsCD I only get to choose from media/CROM, no other players. The bootsequence is: CDROM, C, A. This used to work when all I had was CDROM. Thanks for your good wishes!

masonm: the Bios autodetecs the CDROM and DVD, and from what I can see it is OK. When you say BIOS setting for the new devices, do you mean addresses and such? I haven't made any changes in the BIOS other than chosing a bootsequence. As for the fstab, I must plead ignorance: I have no idea what that means or where I can find it. Is it anything I can update from KDE?

michaelk: it doesn't matter which is master and servant? Does that mean that the software will figure it out regardless of the devices master/slave jumper settings? Yes the CDRW used to be master but I don't remember what device id it had, it was probably /dev/hdc like you say, but I'm not 100% sure. When you say delete the link do you mean mounting? Could it be that the CDROM and DVD wass never mounted properly or not at all? But that does still not explain why I can't boot from the DVD player.... Here's my fstab:
Quote:
/dev/hda2 / reiserfs acl,user_xattr 1 1
/dev/hda1 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/cdrom /media/cdrom subfs noauto,fs=cdfss,ro,procuid,
nosuid,nodev,exec,iocharset=utf8 0 0
/dev/fd0 /media/floppy subfs noauto,fs=floppyfss,procuid
,nodev,nosuid,sync 0 0
/tmp/app/1/image /tmp/app/1 cramfs,iso9660 user,noauto,ro,loop,exec 0 0
/tmp/app/2/image /tmp/app/2 cramfs,iso9660 user,noauto,ro,loop,exec 0 0
/tmp/app/3/image /tmp/app/3 cramfs,iso9660 user,noauto,ro,loop,exec 0 0
/tmp/app/4/image /tmp/app/4 cramfs,iso9660 user,noauto,ro,loop,exec 0 0
/tmp/app/5/image /tmp/app/5 cramfs,iso9660 user,noauto,ro,loop,exec 0 0
/tmp/app/6/image /tmp/app/6 cramfs,iso9660 user,noauto,ro,loop,exec 0 0
/tmp/app/7/image /tmp/app/7 cramfs,iso9660 user,noauto,ro,loop,exec 0 0
the dev/cdrom is noauto, and maybe this would explain the errorcode I recently got from amaroK:
Quote:
Could not mount device.
The reported error was:
mount: only root can mount /dev/cdrom on /media/cdrom
I have a few things to try now... amongst other things I suspect that the dvd is defect. Thanks again for your help.
 
Old 05-24-2006, 10:55 PM   #6
DeusExLinux
Member
 
Registered: May 2004
Location: Tampa, Fl
Distribution: Arch
Posts: 648

Rep: Reputation: 30
I thought SCSI emulation was deprecieated? It couldn't hurt to have it in there, but the dvd burner normally shows up as /dev/scd0

You can use K3b, or any other program you use to burn data/audio cds. Or, through the console with growisofs or any of the other dvd burning tools.

deleting the smlink means :rm /dev/cdrom

change this line
Code:
/dev/cdrom /media/cdrom subfs noauto,fs=cdfss,ro,procuid,
and add users on the end.. like this
Code:
/dev/cdrom /media/cdrom subfs noauto,fs=cdfss,ro,procuid,users
this will all all users to mount.

Also, you might want to consider adding the dvd device manually. Does your distro automagically add things to the fstab? I've found that, sometimes, that stuff doesn't work right half the time.

Last edited by DeusExLinux; 05-24-2006 at 10:58 PM.
 
Old 05-25-2006, 06:27 PM   #7
anatman
Member
 
Registered: May 2006
Location: NEWBIE!
Distribution: Ubuntu 6.06
Posts: 31

Original Poster
Rep: Reputation: 15
Thanks DeusExLinux, i've just removed the DVDplayer to see if it really is defect. It won't boot, but when I physically replaced the DVD with the CDROM it booted just fine, like before, with the same settings. So I'll try it on another PC to make sure.
 
Old 05-26-2006, 06:42 AM   #8
DeusExLinux
Member
 
Registered: May 2004
Location: Tampa, Fl
Distribution: Arch
Posts: 648

Rep: Reputation: 30
sounds like a plan
keep us updated!
 
  


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
CDrom stopped working burningsun1981 Linux - Newbie 10 07-03-2005 04:32 PM
Installed USB2.0 card - sound stopped working DJOtaku Linux - Hardware 0 02-18-2005 01:23 AM
DVD burner stopped working tutwabee Linux - Hardware 5 09-12-2004 11:47 PM
Added new DVD drive, old cd stopped working ejennings_98 Linux - Hardware 9 05-22-2004 09:34 PM
cdrom and dvd-rom just stopped working... rebelcan Linux - Hardware 0 04-18-2004 08:36 PM

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

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