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 11-09-2003, 09:54 PM   #1
gdluiv
LQ Newbie
 
Registered: Nov 2003
Posts: 16

Rep: Reputation: 0
Unhappy Burner not working!!


Hi everybody! I' ve got this problem....I have a Toshiba CD-W / DVD-ROM, but my system recognizes only the DVD-ROM and not the burner...additionally, whenever I mount it, it says it can be mounted only in reading mode!! the output of cdrecord --scanbus is this:

Cdrecord 2.0 (i686-pc-linux-gnu) Copyright (C) 1995-2002 Jrg Schilling
Linux sg driver version: 3.1.24
Using libscg version 'schily-0.7'
cdrecord: Warning: using inofficial libscg transport code version (schily - Red Hat-scsi-linux-sg.c-1.75-RH '@(#)scsi-linux-sg.c 1.75 02/10/21 Copyright 1997 J. Schilling').
scsibus0:
0,0,0 0) 'TOSHIBA ' 'DVD-ROM SD-R2412' '1015' Removable CD-ROM
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *

In the fstab I' ve this:

/dev/scd1 /mnt/cdrom udf,iso9660 noauto,unhide,exec, rw 0 0



PLEASE HELP! thanks a lot, Marco
 
Old 11-09-2003, 10:06 PM   #2
linuxbotx
Member
 
Registered: Oct 2003
Location: USA
Distribution: Fedora Core 4
Posts: 247

Rep: Reputation: 30
Have this with your boot options. hdd=ide-scsi

This should enable scsi emulation. Whats happening is that your cdburner is not recognized because scsi emulation is not on. Also, try changing /dev/scd1 to /dev/sr0 in your fstab file.
 
Old 11-09-2003, 10:29 PM   #3
gdluiv
LQ Newbie
 
Registered: Nov 2003
Posts: 16

Original Poster
Rep: Reputation: 0
Thanks for the quick reply! I've tried what you said...but nothing changed :-( I also noticed that at startup my CD-W / DVD is recognized as /dev/hdc, and that I get an error message regarding line 8 in fstab (the cdrom!) and saying that the line is bad!!! Any ideas why?
 
Old 11-09-2003, 10:43 PM   #4
linuxbotx
Member
 
Registered: Oct 2003
Location: USA
Distribution: Fedora Core 4
Posts: 247

Rep: Reputation: 30
post your entire fstab file and i'll take a look at it for you. I'm pretty sure its the fstab file. Also, type ls -l /dev/cdrom , ls -l /dev/scd1 , and tell me what you get. Is the cdrw/dvd the only cdrom you have installed?
 
Old 11-09-2003, 10:46 PM   #5
gdluiv
LQ Newbie
 
Registered: Nov 2003
Posts: 16

Original Poster
Rep: Reputation: 0
Ok...this the fstab:

LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hda5 swap swap defaults 0 0
/dev/hda6 /osshare vfat umask=000 0 0
/dev/sr0 /mnt/cdrom udf,iso9660 noauto,unhide,exec, rw 0 0

then...

root@host68 root]# ls -l /dev/cdrom
lrwxrwxrwx 1 root root 9 7 nov 13:31 /dev/cdrom -> /dev/scd0
[root@host68 root]# ls -l /dev/scd1
brw-rw---- 1 root disk 11, 1 30 gen 2003 /dev/scd1
[root@host68 root]#


and yes, this is the only device I have on my laptop...
 
Old 11-09-2003, 10:52 PM   #6
linuxbotx
Member
 
Registered: Oct 2003
Location: USA
Distribution: Fedora Core 4
Posts: 247

Rep: Reputation: 30
Try this: First, copy your fstab file to fstab.bak (need to make a backup just in case). Next, replace your fstab file with this below:

LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hda5 swap swap defaults 0 0
/dev/hda6 /osshare vfat umask=000 0 0
/dev/cdrom /media/cdrom auto ro,noauto,user,exec 0 0

before booting, type this during your lilo boot: hdd=ide-scsi

Let it boot. I assume you have the cdrtools installed right? try downloading xcdroast www.xcdroast.org, and install it. The latest RPM should provide you with all dependencies. When you login to your system, loging as root.
 
Old 11-09-2003, 10:55 PM   #7
linuxbotx
Member
 
Registered: Oct 2003
Location: USA
Distribution: Fedora Core 4
Posts: 247

Rep: Reputation: 30
OOPS!!! My bad, use this for your fstab file, sorry:

LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/shm tmpfs defaults 0 0
/dev/hda5 swap swap defaults 0 0
/dev/hda6 /osshare vfat umask=000 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
proc /proc proc defaults 0 0
usbdevfs /proc/bus/usb usbdevfs noauto 0 0 0
/dev/cdrom /mnt/cdrom auto ro,noauto,user,exec 0 0
 
Old 11-09-2003, 11:17 PM   #8
gdluiv
LQ Newbie
 
Registered: Nov 2003
Posts: 16

Original Poster
Rep: Reputation: 0
Tried! Nothing...at least...I don't know how I can check if it's working, for now I have the same problems as before....:-(( One question though, does it matter if I' m booting with GRUB ( I used hdd=ide-scsi anyway)? I also checked and I do have XCDRoast, but I don' t have the error anymore in fstab (I' not really sure why!).
 
Old 11-10-2003, 03:42 AM   #9
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,700

Rep: Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895Reputation: 5895
Were is your CDRW / DVD drive connected, /dev/hdc or /dev/hdd? You need to change grub to where ever the drive is actually located.

It appeared that cdrecord was recognizing the drive correctly. It also appeared that everything was working as /dev/hdc and your device was /dev/cdrom which was linked to /dev/scd0. The drive becomes /dev/scd0 due to SCSI emulation.

So what are you really trying to do. When you mount a CD it will be configured as read only. You do not mount the CD prior to writing and in fact can not mount a blank CD. Does cdrecord --scanbus still detect the drive correctly? When writing, cdrecord uses the actual device and does not care what is in the fstab file.

To test you will need to burn a CD.
 
Old 11-10-2003, 02:02 PM   #10
gdluiv
LQ Newbie
 
Registered: Nov 2003
Posts: 16

Original Poster
Rep: Reputation: 0
Right on Michaelk! I could actually burn a CD!! Thanks a lot!!
 
  


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-Burner not working Snump Mandriva 4 07-08-2005 06:34 AM
Newbie Needs help getting DVD Burner working.. fallout Slackware 10 04-23-2005 01:07 PM
how can I get my burner working? Vincent Slackware 24 12-06-2003 10:58 AM
burner not working the anti-riced Linux - Hardware 8 05-21-2003 02:30 PM
CD Burner not working dtsfanatic Linux - Hardware 7 08-21-2002 12:59 PM

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

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