LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 02-25-2007, 06:23 AM   #1
sunnyjiap3
LQ Newbie
 
Registered: Feb 2007
Posts: 5

Rep: Reputation: 0
cdrom gone!!!


Hi guys, my first post here=) I installed Opensuse 10.2 yesterday but after the installation, I can't get my CDROM to work! I can't find it anywhere. It worked fine with my Windows XP though. I've tried many methods posted here but still it doesn't work.

I got totally nothing in my /mount. And I dont have hda

Content of /etc/fstab:

/dev/sda1 /boot ext3 acl,user_xattr 1 2
/dev/system/root / ext3 acl,user_xattr 1 1
/dev/system/home /home ext3 acl,user_xattr 1 2
/dev/system/swap swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0


Content of dmesg | grep hd:

ide0: BM-DMA at 0x1810-0x1817, BIOS settings: hdaio, hdbio
SCSI device sda: 117231408 512-byte hdwr sectors (60022 MB)
SCSI device sda: 117231408 512-byte hdwr sectors (60022 MB)
SCSI device sdb: 78140160 512-byte hdwr sectors (40008 MB)
SCSI device sdb: 78140160 512-byte hdwr sectors (40008 MB)


I have no idea where my cdrom has gone...Please help! Thanks=)
 
Old 02-25-2007, 07:38 AM   #2
puntjuh
Member
 
Registered: Apr 2006
Location: holland
Distribution: Gentoo / debian / suse / mint
Posts: 558

Rep: Reputation: 42
You should add the cdrom to your fstab file:

/dev/hdb /mnt/dvd auto noauto,ro,user 0 0

Those are the settings i use for my dvdrom on Gentoo.

try this:

tux Desktop # dmesg | grep hda
ide0: BM-DMA at 0xf400-0xf407, BIOS settings: hdaMA, hdbMA
hda: BENQ DVD LS DW1655, ATAPI CD/DVD-ROM drive
hda: ATAPI 48X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, UDMA(33)
hda_codec: Unknown model for AD1988, trying auto-probe from BIOS...

tux Desktop # dmesg | grep hdb
ide0: BM-DMA at 0xf400-0xf407, BIOS settings: hdaMA, hdbMA
hdb: BENQ DVD-ROM 16X, ATAPI CD/DVD-ROM drive
hdb: ATAPI 50X DVD-ROM drive, 512kB Cache

Also do in /dev from konsole:

ls -l | grep hd

And see if something like this pops up:

lrwxrwxrwx 1 root root 3 Feb 25 2007 dvd -> hdb
lrwxrwxrwx 1 root root 3 Feb 25 2007 dvd1 -> hda
lrwxrwxrwx 1 root root 3 Feb 25 2007 dvdrw1 -> hda
brw-rw---- 1 root cdrom 3, 0 Feb 25 2007 hda
brw-rw---- 1 root cdrom 3, 64 Feb 25 2007 hdb

Last edited by puntjuh; 02-25-2007 at 07:40 AM.
 
Old 02-25-2007, 08:23 AM   #3
sunnyjiap3
LQ Newbie
 
Registered: Feb 2007
Posts: 5

Original Poster
Rep: Reputation: 0
thanks! but i dont have /dev/hdb, i dont have anything like hda,hdb... in /dev

output of both "dmesg | grep hda" and "dmesg | grep hda" is:
linux:/dev # dmesg | grep hda
ide0: BM-DMA at 0x1810-0x1817, BIOS settings: hdaio, hdbio

output of ls -l | grep hd:
crw------- 1 root root 10, 130 2006-11-25 20:17 watchdog
 
Old 02-25-2007, 08:48 AM   #4
dxqcanada
Member
 
Registered: Sep 2006
Location: Canada
Distribution: Gentoo
Posts: 702

Rep: Reputation: 43
It looks like your primary IDE controller is detected ... but it is not detecting the drive attached.

Is it set/jumpered as a master or slave on the first IDE controller ??
 
Old 02-25-2007, 09:18 AM   #5
sunnyjiap3
LQ Newbie
 
Registered: Feb 2007
Posts: 5

Original Poster
Rep: Reputation: 0
I believe it's a master on IDE.
 
Old 02-25-2007, 09:51 AM   #6
dxqcanada
Member
 
Registered: Sep 2006
Location: Canada
Distribution: Gentoo
Posts: 702

Rep: Reputation: 43
Hmmm, I wonder if your kernel has support for IDE CD-ROM ???
I would assume that this would be enabled as a default ... if you can check your kernel config just in case.

Code:
n600c linux # zcat /proc/config.gz | grep -i idecd
CONFIG_BLK_DEV_IDECD=y
 
Old 02-25-2007, 10:53 AM   #7
sunnyjiap3
LQ Newbie
 
Registered: Feb 2007
Posts: 5

Original Poster
Rep: Reputation: 0
Thanks buddy you are great!! IDECD is only supported as a module, not built-in. I'm configuring the kernel now, hope my cdrom will work soon!=)
 
Old 02-25-2007, 11:12 AM   #8
netsupremacy
LQ Newbie
 
Registered: Nov 2006
Distribution: SuSE 10.1, Fedora 4, dyne:bolic 2.3
Posts: 19

Rep: Reputation: 0
it should work anyway whether its built in or as a module (at least it does for me)...

and did you try:
mount /dev/cdrom <mount point>

thats what i use to mount mine
 
Old 02-25-2007, 09:11 PM   #9
sunnyjiap3
LQ Newbie
 
Registered: Feb 2007
Posts: 5

Original Poster
Rep: Reputation: 0
i reconfigured the kernel and it did work for a while and i can find a hda in my /dev, but after reboot, the hda is gone again! i dont know what to do now ~><~ and oh, i dont have /dev/cdrom....
 
Old 02-27-2007, 08:24 PM   #10
netsupremacy
LQ Newbie
 
Registered: Nov 2006
Distribution: SuSE 10.1, Fedora 4, dyne:bolic 2.3
Posts: 19

Rep: Reputation: 0
hmmm... the only thing i could suggest is to make sure its enabled in the BIOS and maybe even check the IDE/power supply connections to the drive...but then again if it ejects then the connection is most likely not the problem...
 
  


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 mounting problem => /dev/cdrom is not a valid block device Vizy Linux - Hardware 8 11-04-2010 04:46 PM
CDROM refuses to mount, /dev/cdrom does not exist shane25119 Linux - Hardware 10 08-02-2009 10:43 PM
9.1 install, boot from cdrom, select source as cdrom, Can't find disk jake555 Slackware 1 10-30-2003 10:34 AM
CD problems: /mnt/cdrom and /dev/cdrom okok Linux - Newbie 5 04-09-2003 10:11 AM
fstab and cdrom links - hdc or cdrom? tunedLow Linux - Newbie 5 12-21-2001 12:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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