LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 06-08-2005, 03:04 AM   #1
corbis_demon
Member
 
Registered: Jun 2004
Distribution: CLFS
Posts: 523

Rep: Reputation: 38
Cd burner not recognized


Hi,
I'm on a Slack 10.1 system. My problem is that the system doesn't show the Cd burner in the /mnt folder. It probes and finds the device correctly during startup and also ratifies the device ID (/dev/hdc), but I just cannot access it. Even if I give the command mount /dev/hdc, it gives an error that no such device exists. I checked up in the fstab and listed it there, but after booting it again goes back to the previous state. Please advise.
 
Old 06-08-2005, 03:16 AM   #2
gbonvehi
Senior Member
 
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145

Rep: Reputation: 53
There's no need to have a exact mount point for it, but it's good to have it to have a organized filesystem.
Try:
mkdir /mnt/hdc
mount /dev/hdc /mnt/hdc

If that works, then your cd burner works, then you've to edit fstab to match this.
A line like this would do the work:
/dev/hdc /mnt/hdc auto noauto,gid=100,users,ro 0 0
 
Old 06-08-2005, 03:29 AM   #3
corbis_demon
Member
 
Registered: Jun 2004
Distribution: CLFS
Posts: 523

Original Poster
Rep: Reputation: 38
I did create a separate directory for the cd burner, but I couldn't mount it ,coz it gave the error " no such device exists".
 
Old 06-08-2005, 03:51 AM   #4
gbonvehi
Senior Member
 
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145

Rep: Reputation: 53
Ok, let's see. First of all, type:
Code:
ls -l /dev/hdc
That should tell you if it exists and if it some symlink to something.
Next:
Code:
dmesg | grep hda || dmesg | grep hdb || dmesg | grep hdc || dmesg | grep hdd || dmesg | grep CD
That will hopefully give you all the information, you could also do: dmesg | less
to scroll it pacefully
See if you can spot something else there. Also, are you using scsi emulation (passing hdc=ide-scsi argument on boot)?
 
Old 06-08-2005, 04:58 AM   #5
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
dmesg | grep hda || dmesg | grep hdb || dmesg | grep hdc || dmesg | grep hdd || dmesg | grep CD
same as:
dmesg | grep -e hd[a-d] -e CD

On my system, dmesg doesn't have a message for hdc (a dvd rom drive). Using as root: "grep hdc /var/log/*" reveals that it was detected during booting. It was logged in boot.omsg.

boot.omsg:<4>hdc: JLMS DVD-ROM LTD163D, ATAPI CD/DVD-ROM drive
boot.omsg:<4>hdc: ATAPI 48X DVD-ROM drive, 512kB Cache
boot.omsg:/dev/hdc on /media/dvd type subfs (ro,nosuid,nodev,fs=cdfss,procuid,iocharset=utf8)

If you aren't sure of the device name you could use "hd[a-d]" for the regular expression.
grep -e "ROM" -e "hd[a-d]" -e "CD" /var/log/*

Scsi emulation is used if you have a 2.4 kernel.

Also, do you know whether you have an IDE CD-ROM drive or a SCSI drive?

I think you said that the drive is listed in fstab. Is that correct?
If so, remember that you are mounting the disc. If the disc isn't present you won't be able to mount it. A bad disk will cause problems also.

What is the fstab entry?

Last edited by jschiwal; 06-08-2005 at 05:01 AM.
 
Old 06-08-2005, 07:03 AM   #6
rkrishna
Member
 
Registered: Mar 2005
Location: chennai(madras), India
Distribution: slackware ofcourse
Posts: 654

Rep: Reputation: 32
have you installed xcdroast
it will scan itself teh devices
or
run general command cdrecord -scanbus
how the cdrom part of ur fstab looks

in kde konqueror file brouser will show the device in device menu

regards
 
Old 06-08-2005, 09:28 AM   #7
rhythmking
Member
 
Registered: Dec 2003
Posts: 54

Rep: Reputation: 15
I am running 10.0 and the first thing I did was type mail and read the directions from PV as I always do.
He explained that the system must be made to think the cd burner is a scsi device.
He gave instructions, very simple to create the device and a link.
Once I did this I was able to use the cdrtools like cdrecord and cdparanoia to rip and burn cd's.
The device became sr0.
I checked man cdrecord and man cdparanoia.
also: I don't think you can mount an audio cd.
 
Old 06-10-2005, 03:20 AM   #8
rkrishna
Member
 
Registered: Mar 2005
Location: chennai(madras), India
Distribution: slackware ofcourse
Posts: 654

Rep: Reputation: 32
where u gone

corbis_demon tell something
 
Old 04-14-2006, 09:38 PM   #9
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Quote:
Originally Posted by jschiwal
dmesg | grep hda || dmesg | grep hdb || dmesg | grep hdc || dmesg | grep hdd || dmesg | grep CD
same as:
dmesg | grep -e hd[a-d] -e CD
A much simpler way (with less output) to find a CD or DVD drive is "dmesg | grep -i atapi" since they are all ATAPI drives.
 
  


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
SATA Optical Drive (DVD Burner) not recognized squisher Linux - Hardware 5 04-05-2005 11:16 AM
CD-burner no longer recognized jonr Mandriva 5 08-06-2004 01:43 AM
eth0 recognized but not recognized? rafc Linux - Newbie 7 04-21-2004 04:13 AM
trying to mount cd burner, cd burner being a whore lasalsademuerte Slackware 5 12-09-2003 03:56 PM
KDE3.2beta...changing my burner to be recognized as a HD to CDROM hypermegachi Linux - Software 5 12-07-2003 06:19 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

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