On Thu, 2004-04-22 at 20:16 -0400, David Clymer wrote: > First off, some list etticate ;o) Since a mailing list is intended to be > a place of public discussion, it is proper to reply to the list rather > than directly to an individual - no need to CC anyone either (unless > they specifically request it), since most people who post to the list > are already subscribed and dont need a 2nd copy. sorry about that, i was aware of this however i just clicked reply thinking it would be defualt go to the list > > Now that that is out of the way... > > -----Forwarded Message----- > > From: Keir Lawson <[EMAIL PROTECTED]> > > To: David Clymer <[EMAIL PROTECTED]> > > Subject: Re: Nautilus CD burner > > Date: Thu, 22 Apr 2004 18:13:31 +0100 > > > > On Thu, 2004-04-22 at 00:56 -0400, David Clymer wrote: > > > On Wed, 2004-04-21 at 13:03, Keir Lawson wrote: > > > > doesnt seem to detect my cdrw, it is set up properly (using ide-scsi > > > > (kernel 2.4)), the fstab entry looks like this: > > > > > > > > /dev/hdd /mnt/cdrw udf,iso9660 noauto,user,ro 0 0 > > > > > > > > the drive simply doesnt show up in the write CD dialog > > > > > > > > > > Thats all very interesting. Did you need help with something? > > > > > > > > For the benefit of those who may not have grasped the meaning contained > > > therein, I have provided a paraphrased version of the above status > > > report: > > > > > > I am using ide-scsi, effectively "converting" my IDE device to a SCSI > > > device. However, I have created an entry in /etc/fstab which references > > > an IDE device rather than the SCSI device which now represents my CD-RW > > > drive. > > The message should look like this: > > > > Nautilus cd burner doesnt seem to detect my cdrw, it is set up properly > > (using ide-scsi(kernel 2.4)), the fstab entry looks like this: > > /dev/hdd /mnt/cdrw udf,iso9660 noauto,user,ro 0 0 > > the drive simply doesnt show up in the write CD dialog > > > > what i would like help with is getting nautilus cd burner to "see" my > > cdrw. im not sure if ive set it up correctly or anything, im new to > > debian (and relatively new to linux) > > > > What I was hinting at is this: you are using ide-scsi, which allows you > to treat your IDE device as a scsi device, and you claim that it is > working. This means that you refer to it using a scsi device (/dev/scd0) > name rather than an ide device name (/dev/hdd). So, bearing that in > mind, can you see what might be wrong about your /etc/fstab file? > > you've got: > > # device mount point fs type options dump pass > #-------- ------------- -------- -------- ---- ----- > /dev/hdd /mnt/cdrw udf,iso9660 noauto,user,ro 0 0 > > what you probably want is: > > # device mount point fs type options dump pass > #-------- ------------- -------- -------- ---- ----- > /dev/scd0 /mnt/cdrw udf,iso9660 noauto,user,ro 0 0 > > that should allow you to mount your CD-ROM > > However, I doubt any of this has anything to do with your nautilus > CD-creator problem. At what point is it "not seeing" your CD-RW drive? > Only in Nautilus CD-creator? Can you mount the drive, or play CDs with > it? > > What is the output of the following commands?: > > cdrecord -scanbus > cdrecord -scanbus dev=ATAPI as normal user:
cdrecord -scanbus: NOTE: this version of cdrecord is an inofficial (modified) release of cdrecord and thus may have bugs that are not present in the original version. Please send bug reports and support requests to <[EMAIL PROTECTED]>. The original author should not be bothered with problems of this version. cdrecord: Permission denied. Cannot open '/dev/sg0'. Cannot open SCSI driver. cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root. cdrecord: For possible transport specifiers try 'cdrecord dev=help'. cdrecord: cdrecord: For more information, install the cdrtools-doc cdrecord: package and read /usr/share/doc/cdrecord/README.ATAPI.setup . cdrecord -scanbus dev=ATAPI: NOTE: this version of cdrecord is an inofficial (modified) release of cdrecord and thus may have bugs that are not present in the original version. Please send bug reports and support requests to <[EMAIL PROTECTED]>. The original author should not be bothered with problems of this version. scsidev: 'ATAPI' devname: 'ATAPI' scsibus: -2 target: -2 lun: -2 Warning: Using ATA Packet interface. Warning: The related libscg interface code is in pre alpha. Warning: There may be fatal problems. cdrecord: Permission denied. Cannot open SCSI driver. cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root. cdrecord: For possible transport specifiers try 'cdrecord dev=help'. cdrecord: cdrecord: For more information, install the cdrtools-doc cdrecord: package and read /usr/share/doc/cdrecord/README.ATAPI.setup . as root: cdrecord -scanbus: NOTE: this version of cdrecord is an inofficial (modified) release of cdrecord and thus may have bugs that are not present in the original version. Please send bug reports and support requests to <[EMAIL PROTECTED]>. The original author should not be bothered with problems of this version. Linux sg driver version: 3.1.25 Using libscg version 'schily-0.8'. scsibus0: 0,0,0 0) 'LITE-ON ' 'LTR-32123S ' 'XS0R' 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) * cdrecord -scanbus -dev=ATAPI: [?] NOTE: this version of cdrecord is an inofficial (modified) release of cdrecord and thus may have bugs that are not present in the original version. Please send bug reports and support requests to <[EMAIL PROTECTED]>. The original author should not be bothered with problems of this version. scsidev: 'ATAPI' devname: 'ATAPI' scsibus: -2 target: -2 lun: -2 Warning: Using ATA Packet interface. Warning: The related libscg interface code is in pre alpha. Warning: There may be fatal problems. cdrecord: ERROR: unknow subsystem (scd0) in (/dev/sr0) Using libscg version 'schily-0.8'. scsibus0: 0,0,0 0) 'MT1316B ' 'BDV212B ' '0.43' 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) * > > What have you done to investigate the problem to date? not much as my fstab entry was wrong, xcd-roast did detect it as a scsi device, leading me to belive that my fstab entry was correct thanks for your help so far Keir -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]