public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] undetected DVD r/w device
@ 2010-09-06  8:55 alain.didierjean
  2010-09-06 10:30 ` Jake Moe
                   ` (2 more replies)
  0 siblings, 3 replies; 28+ messages in thread
From: alain.didierjean @ 2010-09-06  8:55 UTC (permalink / raw
  To: gentoo-user


For some unknown reason, my DVD r/w device is not detected as such by udev:
I can mount /dev/hda and read a data CD, but /dev/cdrom is not created at boot
time and k3b returns
" No optical drive found.
K3b did not find any optical device in your system.
Solution : Make sure HAL daemon is running, it is used by K3b for finding
devices."
Well, hald IS running on my hardened amd64 system and /etc/udev/rules.d contains
 70-persistent-cd.rules. Where should I look now to fix the problem ?

--
~adj~




^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06  8:55 [gentoo-user] undetected DVD r/w device alain.didierjean
@ 2010-09-06 10:30 ` Jake Moe
  2010-09-06 11:13 ` Stroller
  2010-09-06 12:05 ` [gentoo-user] " Joerg Schilling
  2 siblings, 0 replies; 28+ messages in thread
From: Jake Moe @ 2010-09-06 10:30 UTC (permalink / raw
  To: gentoo-user

 On 09/06/10 18:55, alain.didierjean@free.fr wrote:
> For some unknown reason, my DVD r/w device is not detected as such by udev:
> I can mount /dev/hda and read a data CD, but /dev/cdrom is not created at boot
> time and k3b returns
> " No optical drive found.
> K3b did not find any optical device in your system.
> Solution : Make sure HAL daemon is running, it is used by K3b for finding
> devices."
> Well, hald IS running on my hardened amd64 system and /etc/udev/rules.d contains
>  70-persistent-cd.rules. Where should I look now to fix the problem ?
>
> --
> ~adj~
What's the contents of 70-persistent-cd.rules?  I recently had the same
problem on a HP laptop; the DVD drive worked in most things, but not in
K3B, and I tracked the root down to the fact that while I could see
/dev/sr0, the symlinks for /dev/[cdrom,cdrw,dvd,dvdrw] weren't there.  I
could mount /dev/sr0 and the drive worked, but K3B never found the
drive.  I believe I fixed it by editing that rules file somehow.  I
can't remember while laptop it was on, but here's the two
70-persistent-cd.rules files I have:

(I think this one was the one that worked)

# This file was automatically generated by the /lib/udev/write_cd_rules
# program, run by the cd-aliases-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and set the $GENERATED variable.

# CDDVDW_TS-L633N (pci-0000:00:1f.2-scsi-1:0:0:0)
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:1f.2-scsi-1:0:0:0", SYMLINK+="cdrom",
ENV{GENERATED}="1"
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:1f.2-scsi-1:0:0:0", SYMLINK+="cdrw",
ENV{GENERATED}="1"
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:1f.2-scsi-1:0:0:0", SYMLINK+="dvd",
ENV{GENERATED}="1"
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*",
ENV{ID_PATH}=="pci-0000:00:1f.2-scsi-1:0:0:0", SYMLINK+="dvdrw",
ENV{GENERATED}="1"

(I think this one was the one that I had to rewrite myself)

SUBSYSTEM=="block", KERNEL=="hdb", SYMLINK+="cdrom", GROUP="cdrom"
SUBSYSTEM=="block", KERNEL=="hdb", SYMLINK+="cdrw", GROUP="cdrom"
SUBSYSTEM=="block", KERNEL=="hdb", SYMLINK+="dvd", GROUP="cdrom"
SUBSYSTEM=="block", KERNEL=="hdb", SYMLINK+="dvdrw", GROUP="cdrom"

HTH,

Jake Moe



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06  8:55 [gentoo-user] undetected DVD r/w device alain.didierjean
  2010-09-06 10:30 ` Jake Moe
@ 2010-09-06 11:13 ` Stroller
  2010-09-06 15:04   ` alain.didierjean
                     ` (2 more replies)
  2010-09-06 12:05 ` [gentoo-user] " Joerg Schilling
  2 siblings, 3 replies; 28+ messages in thread
From: Stroller @ 2010-09-06 11:13 UTC (permalink / raw
  To: gentoo-user


On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:

>
> For some unknown reason, my DVD r/w device is not detected as such  
> by udev:
> I can mount /dev/hda and read a data CD, ...

Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).

See last months "DVD borked: SysFS removed" thread:
http://www.gossamer-threads.com/lists/gentoo/user/216290

My advice in that thread applies also to you.

Stroller.




^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06  8:55 [gentoo-user] undetected DVD r/w device alain.didierjean
  2010-09-06 10:30 ` Jake Moe
  2010-09-06 11:13 ` Stroller
@ 2010-09-06 12:05 ` Joerg Schilling
  2010-09-11 15:57   ` alain.didierjean
  2 siblings, 1 reply; 28+ messages in thread
From: Joerg Schilling @ 2010-09-06 12:05 UTC (permalink / raw
  To: gentoo-user

alain.didierjean@free.fr wrote:

>
> For some unknown reason, my DVD r/w device is not detected as such by udev:
> I can mount /dev/hda and read a data CD, but /dev/cdrom is not created at boot
> time and k3b returns
> " No optical drive found.
> K3b did not find any optical device in your system.
> Solution : Make sure HAL daemon is running, it is used by K3b for finding
> devices."

If you call cdrecord (release 3.00):

	cdrecord -scanbus

or
	cdrecord -checkdrive

and it finds a drive, then there is a bug in k3b.

Jörg

-- 
 EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
       js@cs.tu-berlin.de                (uni)  
       joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06 11:13 ` Stroller
@ 2010-09-06 15:04   ` alain.didierjean
  2010-09-06 15:06   ` alain.didierjean
  2010-09-06 15:11   ` alain.didierjean
  2 siblings, 0 replies; 28+ messages in thread
From: alain.didierjean @ 2010-09-06 15:04 UTC (permalink / raw
  To: gentoo-user

Selon Stroller <stroller@stellar.eclipse.co.uk>:

>
> On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
>
> >
> > For some unknown reason, my DVD r/w device is not detected as such
> > by udev:
> > I can mount /dev/hda and read a data CD, ...
>
> Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
>

There's no sr* device on my system !!! Only way to reach the drive: /dev/hda.
Help



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06 11:13 ` Stroller
  2010-09-06 15:04   ` alain.didierjean
@ 2010-09-06 15:06   ` alain.didierjean
  2010-09-06 15:11   ` alain.didierjean
  2 siblings, 0 replies; 28+ messages in thread
From: alain.didierjean @ 2010-09-06 15:06 UTC (permalink / raw
  To: gentoo-user

Selon Stroller <stroller@stellar.eclipse.co.uk>:

>
> On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
>
> >
> > For some unknown reason, my DVD r/w device is not detected as such
> > by udev:
> > I can mount /dev/hda and read a data CD, ...
>
> Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
>

There's no sr* device on my system !!! Only way to reach the drive: /dev/hda.
Help








^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06 11:13 ` Stroller
  2010-09-06 15:04   ` alain.didierjean
  2010-09-06 15:06   ` alain.didierjean
@ 2010-09-06 15:11   ` alain.didierjean
  2010-09-06 15:20     ` alain.didierjean
                       ` (2 more replies)
  2 siblings, 3 replies; 28+ messages in thread
From: alain.didierjean @ 2010-09-06 15:11 UTC (permalink / raw
  To: gentoo-user

Selon Stroller <stroller@stellar.eclipse.co.uk>:

>
> On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
>
> >
> > For some unknown reason, my DVD r/w device is not detected as such
> > by udev:
> > I can mount /dev/hda and read a data CD, ...
>
> Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
>

There's no sr* device on my system !!! Only way to reach the drive: /dev/hda.
Help










^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06 15:11   ` alain.didierjean
@ 2010-09-06 15:20     ` alain.didierjean
  2010-09-10 14:25     ` alain.didierjean
  2010-09-11 11:10     ` [gentoo-user] " Stéphane Guedon
  2 siblings, 0 replies; 28+ messages in thread
From: alain.didierjean @ 2010-09-06 15:20 UTC (permalink / raw
  To: gentoo-user

Selon alain.didierjean@free.fr:

> Selon Stroller <stroller@stellar.eclipse.co.uk>:
>
> >
> > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> >
> > >
> > > For some unknown reason, my DVD r/w device is not detected as such
> > > by udev:
> > > I can mount /dev/hda and read a data CD, ...
> >
> > Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
> >
>
> There's no sr* device on my system !!! Only way to reach the drive: /dev/hda.
> Help

Apologies for the triple post. The blame goes to my ISP



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06 15:11   ` alain.didierjean
  2010-09-06 15:20     ` alain.didierjean
@ 2010-09-10 14:25     ` alain.didierjean
  2010-09-10 23:49       ` [gentoo-user] " walt
  2010-09-11 11:10     ` [gentoo-user] " Stéphane Guedon
  2 siblings, 1 reply; 28+ messages in thread
From: alain.didierjean @ 2010-09-10 14:25 UTC (permalink / raw
  To: gentoo-user

Selon alain.didierjean@free.fr:

> Selon Stroller <stroller@stellar.eclipse.co.uk>:
>
> >
> > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> >
> > >
> > > For some unknown reason, my DVD r/w device is not detected as such
> > > by udev:
> > > I can mount /dev/hda and read a data CD, ...
> >
> > Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
> >
>
> There's no sr* device on my system !!! Only way to reach the drive: /dev/hda.
> Help

FOLLOW-Up
I now use the following udev rules (70-persistent-cd.rules)

# TSSTcorpCD_DVDW_SH-W162C (pci-0000:00:06.0)
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:06.0",
SYMLINK+="cdrom", ENV{GENERATED}="1"
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:06.0",
SYMLINK+="cdrw", ENV{GENERATED}="1"
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:06.0",
SYMLINK+="dvd", ENV{GENERATED}="1"
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:06.0",
SYMLINK+="dvdrw", ENV{GENERATED}="1"
# ~adj~ added
SUBSYSTEM=="block", KERNEL=="hda", SYMLINK+="cdrom", GROUP="cdrom"
SUBSYSTEM=="block", KERNEL=="hda", SYMLINK+="cdrw", GROUP="cdrom"
SUBSYSTEM=="block", KERNEL=="hda", SYMLINK+="dvd", GROUP="cdrom"
SUBSYSTEM=="block", KERNEL=="hda", SYMLINK+="dvdrw", GROUP="cdrom"

symbolic links get created, no /dev/sr0. k3b still refuses to work.
BUT
when I
# mount --bind / temporary
I do get a /temporary/dev/sr0 !!
What give ? I'm reluctant to add a NAME=sr0 rule as it should be the default;
What's going on ?

--
~adj~






^ permalink raw reply	[flat|nested] 28+ messages in thread

* [gentoo-user] Re: undetected DVD r/w device
  2010-09-10 14:25     ` alain.didierjean
@ 2010-09-10 23:49       ` walt
  2010-09-11  6:38         ` alain.didierjean
  0 siblings, 1 reply; 28+ messages in thread
From: walt @ 2010-09-10 23:49 UTC (permalink / raw
  To: gentoo-user

On 09/10/2010 07:25 AM, alain.didierjean@free.fr wrote:
> Selon alain.didierjean@free.fr:
>
>> Selon Stroller<stroller@stellar.eclipse.co.uk>:
>>
>>>
>>> On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
>>>
>>>>
>>>> For some unknown reason, my DVD r/w device is not detected as such
>>>> by udev:
>>>> I can mount /dev/hda and read a data CD, ...

> symbolic links get created, no /dev/sr0. k3b still refuses to work.
> BUT
> when I
> # mount --bind / temporary
> I do get a /temporary/dev/sr0 !!
> What give ? I'm reluctant to add a NAME=sr0 rule as it should be the default;
> What's going on ?

AFAICT, you didn't say if you read the earlier thread cited by Stroller:

http://www.gossamer-threads.com/lists/gentoo/user/216290

My apologies if I missed your reply, and I wish you a happy weekend.





^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] Re: undetected DVD r/w device
  2010-09-10 23:49       ` [gentoo-user] " walt
@ 2010-09-11  6:38         ` alain.didierjean
  2010-09-11 12:29           ` Stroller
  0 siblings, 1 reply; 28+ messages in thread
From: alain.didierjean @ 2010-09-11  6:38 UTC (permalink / raw
  To: gentoo-user

Selon walt <w41ter@gmail.com>:

> On 09/10/2010 07:25 AM, alain.didierjean@free.fr wrote:
> > Selon alain.didierjean@free.fr:
> >
> >> Selon Stroller<stroller@stellar.eclipse.co.uk>:
> >>
> >>>
> >>> On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> >>>
> >>>>
> >>>> For some unknown reason, my DVD r/w device is not detected as such
> >>>> by udev:
> >>>> I can mount /dev/hda and read a data CD, ...
>
> > symbolic links get created, no /dev/sr0. k3b still refuses to work.
> > BUT
> > when I
> > # mount --bind / temporary
> > I do get a /temporary/dev/sr0 !!
> > What give ? I'm reluctant to add a NAME=sr0 rule as it should be the
> default;
> > What's going on ?
>
> AFAICT, you didn't say if you read the earlier thread cited by Stroller:
>
> http://www.gossamer-threads.com/lists/gentoo/user/216290
>

Sure did. didn't help much.




^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06 15:11   ` alain.didierjean
  2010-09-06 15:20     ` alain.didierjean
  2010-09-10 14:25     ` alain.didierjean
@ 2010-09-11 11:10     ` Stéphane Guedon
  2010-09-11 16:01       ` alain.didierjean
  2 siblings, 1 reply; 28+ messages in thread
From: Stéphane Guedon @ 2010-09-11 11:10 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: Text/Plain, Size: 789 bytes --]

Le Monday 06 September 2010 17:11:17, alain.didierjean@free.fr a écrit :
> Selon Stroller <stroller@stellar.eclipse.co.uk>:
> > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> > > For some unknown reason, my DVD r/w device is not detected as such
> > > by udev:
> > > I can mount /dev/hda and read a data CD, ...
> > 
> > Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
> 
> There's no sr* device on my system !!! Only way to reach the drive:
> /dev/hda. Help

So, you're not using the latest drivers (scsi emultation of ata hdd)...

-- 
Stéphane Guedon
page web : http://www.22decembre.eu/
carte de visite : http://www.22decembre.eu/downloads/Stephane-Guedon.vcf
clé publique gpg : http://www.22decembre.eu/downloads/Stephane-Guedon.asc

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] Re: undetected DVD r/w device
  2010-09-11  6:38         ` alain.didierjean
@ 2010-09-11 12:29           ` Stroller
  0 siblings, 0 replies; 28+ messages in thread
From: Stroller @ 2010-09-11 12:29 UTC (permalink / raw
  To: gentoo-user


On 11 Sep 2010, at 07:38, alain.didierjean@free.fr wrote:
>> ...
>> AFAICT, you didn't say if you read the earlier thread cited by  
>> Stroller:
>>
>> http://www.gossamer-threads.com/lists/gentoo/user/216290
>>
>
> Sure did. didn't help much.

No, it wouldn't if you didn't bother to read it or actually follow its  
advice.

Where is the the output of `dmesg`? You have not sent it.


Stroller.




^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-06 12:05 ` [gentoo-user] " Joerg Schilling
@ 2010-09-11 15:57   ` alain.didierjean
  2010-09-11 17:48     ` Mick
  0 siblings, 1 reply; 28+ messages in thread
From: alain.didierjean @ 2010-09-11 15:57 UTC (permalink / raw
  To: gentoo-user

Selon Joerg Schilling <Joerg.Schilling@fokus.fraunhofer.de>:

> alain.didierjean@free.fr wrote:
>
> >
> > For some unknown reason, my DVD r/w device is not detected as such by udev:
> > I can mount /dev/hda and read a data CD, but /dev/cdrom is not created at
> boot
> > time and k3b returns
> > " No optical drive found.
> > K3b did not find any optical device in your system.
> > Solution : Make sure HAL daemon is running, it is used by K3b for finding
> > devices."
>
> If you call cdrecord (release 3.00):
>
> 	cdrecord -scanbus
>
> or
> 	cdrecord -checkdrive
>
> and it finds a drive, then there is a bug in k3b.
>

alain@isba ~ $ cdrecord --checkdrive
Cdrecord-ProDVD-ProBD-Clone 3.00 (x86_64-unknown-linux-gnu) Copyright (C)
1995-2010 Jörg Schilling
Linux sg driver version: 3.5.27
Using libscg version 'schily-0.9'.
No target specified, trying to find one...
Using dev=1000,0,0.
Device type    : Removable CD-ROM
Version        : 0
Response Format: 2
Capabilities   :
Vendor_info    : 'TSSTcorp'
Identifikation : 'CD/DVDW SH-W162C'
Revision       : 'TS10'
Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM.
Using generic SCSI-3/mmc   CD-R/CD-RW driver (mmc_cdr).
Driver flags   : MMC-3 SWABAUDIO BURNFREE
Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R
cdrecord: Warning: Cannot read drive buffer.
cdrecord: Warning: The DMA speed test has been skipped.


alain@isba ~ $ dmesg | grep hda
hda: TSSTcorpCD/DVDW SH-W162C, ATAPI CD/DVD-ROM drive
hda: host max PIO5 wanted PIO255(auto-tune) selected PIO4
hda: UDMA/33 mode selected
ide-cd: hda: ATAPI 48X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache

--
~adj~



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 11:10     ` [gentoo-user] " Stéphane Guedon
@ 2010-09-11 16:01       ` alain.didierjean
  2010-09-11 17:50         ` Mick
  0 siblings, 1 reply; 28+ messages in thread
From: alain.didierjean @ 2010-09-11 16:01 UTC (permalink / raw
  To: gentoo-user

Selon Stéphane Guedon <stephane@22decembre.eu>:

> Le Monday 06 September 2010 17:11:17, alain.didierjean@free.fr a écrit :
> > Selon Stroller <stroller@stellar.eclipse.co.uk>:
> > > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> > > > For some unknown reason, my DVD r/w device is not detected as such
> > > > by udev:
> > > > I can mount /dev/hda and read a data CD, ...
> > >
> > > Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
> >
> > There's no sr* device on my system !!! Only way to reach the drive:
> > /dev/hda. Help
>
> So, you're not using the latest drivers (scsi emultation of ata hdd)...
>
> --
> Stéphane Guedon
> page web : http://www.22decembre.eu/
> carte de visite : http://www.22decembre.eu/downloads/Stephane-Guedon.vcf
> clé publique gpg : http://www.22decembre.eu/downloads/Stephane-Guedon.asc
>

I use <*> ATA/ATAPI/MFM/RLL support (DEPRECATED)  ---> in Device Drivers as I've
done in the past, and it used to work fine

||
~adj~



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 15:57   ` alain.didierjean
@ 2010-09-11 17:48     ` Mick
  2010-09-11 18:01       ` Joerg Schilling
  0 siblings, 1 reply; 28+ messages in thread
From: Mick @ 2010-09-11 17:48 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: Text/Plain, Size: 1138 bytes --]

On Saturday 11 September 2010 16:57:18 alain.didierjean@free.fr wrote:
> Selon Joerg Schilling <Joerg.Schilling@fokus.fraunhofer.de>:
> > alain.didierjean@free.fr wrote:
> > > For some unknown reason, my DVD r/w device is not detected as such by
> > > udev: I can mount /dev/hda and read a data CD, but /dev/cdrom is not
> > > created at
> > 
> > boot
> > 
> > > time and k3b returns
> > > " No optical drive found.
> > > K3b did not find any optical device in your system.
> > > Solution : Make sure HAL daemon is running, it is used by K3b for
> > > finding devices."
> > 
> > If you call cdrecord (release 3.00):
> > 	cdrecord -scanbus
> > 
> > or
> > 
> > 	cdrecord -checkdrive
> > 
> > and it finds a drive, then there is a bug in k3b.
> 
> alain@isba ~ $ cdrecord --checkdrive
> Cdrecord-ProDVD-ProBD-Clone 3.00 (x86_64-unknown-linux-gnu) Copyright (C)
> 1995-2010 Jörg Schilling
> Linux sg driver version: 3.5.27
> Using libscg version 'schily-0.9'.
> No target specified, trying to find one...
> Using dev=1000,0,0.

This looks fishy ...

On mine it is:  Using dev=1,0,0.

-- 
Regards,
Mick

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 16:01       ` alain.didierjean
@ 2010-09-11 17:50         ` Mick
  2010-09-11 18:15           ` alain.didierjean
  2010-09-11 18:24           ` [gentoo-user] undetected DVD r/w device Peter Humphrey
  0 siblings, 2 replies; 28+ messages in thread
From: Mick @ 2010-09-11 17:50 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: Text/Plain, Size: 1339 bytes --]

On Saturday 11 September 2010 17:01:29 alain.didierjean@free.fr wrote:
> Selon Stéphane Guedon <stephane@22decembre.eu>:
> > Le Monday 06 September 2010 17:11:17, alain.didierjean@free.fr a écrit :
> > > Selon Stroller <stroller@stellar.eclipse.co.uk>:
> > > > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> > > > > For some unknown reason, my DVD r/w device is not detected as such
> > > > > by udev:
> > > > > I can mount /dev/hda and read a data CD, ...
> > > > 
> > > > Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
> > > 
> > > There's no sr* device on my system !!! Only way to reach the drive:
> > > /dev/hda. Help
> > 
> > So, you're not using the latest drivers (scsi emultation of ata hdd)...
> > 
> > --
> > Stéphane Guedon
> > page web : http://www.22decembre.eu/
> > carte de visite : http://www.22decembre.eu/downloads/Stephane-Guedon.vcf
> > clé publique gpg : http://www.22decembre.eu/downloads/Stephane-Guedon.asc
> 
> I use <*> ATA/ATAPI/MFM/RLL support (DEPRECATED)  ---> in Device Drivers as
> I've done in the past, and it used to work fine

Deselect that which is deprecated and will be removed soon and select the 
appropriate SCSI drivers for your drives.  There's been a few messages on this 
list explaining how to go about it.
-- 
Regards,
Mick

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 17:48     ` Mick
@ 2010-09-11 18:01       ` Joerg Schilling
  0 siblings, 0 replies; 28+ messages in thread
From: Joerg Schilling @ 2010-09-11 18:01 UTC (permalink / raw
  To: gentoo-user

Mick <michaelkintzios@gmail.com> wrote:

> > > If you call cdrecord (release 3.00):
> > > 	cdrecord -scanbus
> > > 
> > > or
> > > 
> > > 	cdrecord -checkdrive
> > > 
> > > and it finds a drive, then there is a bug in k3b.
> > 
> > alain@isba ~ $ cdrecord --checkdrive
> > Cdrecord-ProDVD-ProBD-Clone 3.00 (x86_64-unknown-linux-gnu) Copyright (C)
> > 1995-2010 Jörg Schilling
> > Linux sg driver version: 3.5.27
> > Using libscg version 'schily-0.9'.
> > No target specified, trying to find one...
> > Using dev=1000,0,0.
>
> This looks fishy ...
>
> On mine it is:  Using dev=1,0,0.

This is the result of having a non-orthogonal driver model for SCSI devices in 
Linux.

Some drivers are fully integrated into the SCSI sub-system and receive low SCSI 
bus numbers from libscg and other drivers are separated and are mapped to high 
SCSI bus numbers. Some drivers are even accessible from two or more competing 
drivers.

Jörg

-- 
 EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
       js@cs.tu-berlin.de                (uni)  
       joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 17:50         ` Mick
@ 2010-09-11 18:15           ` alain.didierjean
  2010-09-12 16:27             ` [gentoo-user] undetected DVD r/w device SOLVED alain.didierjean
  2010-09-11 18:24           ` [gentoo-user] undetected DVD r/w device Peter Humphrey
  1 sibling, 1 reply; 28+ messages in thread
From: alain.didierjean @ 2010-09-11 18:15 UTC (permalink / raw
  To: gentoo-user

Selon Mick <michaelkintzios@gmail.com>:

> On Saturday 11 September 2010 17:01:29 alain.didierjean@free.fr wrote:
> > Selon Stéphane Guedon <stephane@22decembre.eu>:
> > > Le Monday 06 September 2010 17:11:17, alain.didierjean@free.fr a écrit :
> > > > Selon Stroller <stroller@stellar.eclipse.co.uk>:
> > > > > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> > > > > > For some unknown reason, my DVD r/w device is not detected as such
> > > > > > by udev:
> > > > > > I can mount /dev/hda and read a data CD, ...
> > > > >
> > > > > Current kernels usually call optical drives /dev/sr0 (/dev/sr1, &c).
> > > >
> > > > There's no sr* device on my system !!! Only way to reach the drive:
> > > > /dev/hda. Help
> > >
> > > So, you're not using the latest drivers (scsi emultation of ata hdd)...

> >
> > I use <*> ATA/ATAPI/MFM/RLL support (DEPRECATED)  ---> in Device Drivers as
> > I've done in the past, and it used to work fine
>
> Deselect that which is deprecated and will be removed soon and select the
> appropriate SCSI drivers for your drives.  There's been a few messages on
> this
> list explaining how to go about it.

Done. Works both for cdrom unit and old IDE disk, whch now are know as sr0 (ex
hda) and sdc (wax hdc). cdrecord --checkdrive says
Cdrecord-ProDVD-ProBD-Clone 3.00 (x86_64-unknown-linux-gnu) Copyright (C)
1995-2010 Jörg Schilling
Linux sg driver version: 3.5.34
Using libscg version 'schily-0.9'.
No target specified, trying to find one...
Using dev=4,0,0.
Device type    : Removable CD-ROM
Version        : 5
Response Format: 2
Capabilities   :
Vendor_info    : 'TSSTcorp'
Identifikation : 'CD/DVDW SH-W162C'
Revision       : 'TS10'
Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM.
Using generic SCSI-3/mmc   CD-R/CD-RW driver (mmc_cdr).
Driver flags   : MMC-3 SWABAUDIO BURNFREE
Supported modes: TAO PACKET SAO SAO/R96P SAO/R96R RAW/R16 RAW/R96P RAW/R96R
cdrecord: Warning: Cannot read drive buffer.
cdrecord: Warning: The DMA speed test has been skipped.

But that silly k3b returns
No optical drive found.
K3b did not find any optical device in your system.
Solution : Make sure HAL daemon is running, it is used by K3b for finding
devices.
 and on the terminal
QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

QStringList Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const
Solid::DeviceInterface::Type&)  error: 
"org.freedesktop.DBus.Error.AccessDenied"

k3b(5361)/kdecore (services) KMimeTypeFactory::parseMagic: Now parsing 
"/usr/share/mime/magic"

I'm lost !

--
~adj~






^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 17:50         ` Mick
  2010-09-11 18:15           ` alain.didierjean
@ 2010-09-11 18:24           ` Peter Humphrey
  2010-09-11 20:15             ` Alan McKinnon
  2010-09-12  0:15             ` [gentoo-user] " walt
  1 sibling, 2 replies; 28+ messages in thread
From: Peter Humphrey @ 2010-09-11 18:24 UTC (permalink / raw
  To: gentoo-user

On Saturday 11 September 2010 18:50:04 Mick wrote:

> Deselect that which is deprecated and will be removed soon

I hope it won't. I have one box whose drives the new drivers cannot 
detect - at least, nothing I've tried has worked so far.

> and select the appropriate SCSI drivers for your drives.  There's been
> a few messages on this list explaining how to go about it.

-- 
Rgds
Peter.          Linux Counter 5290, 1994-04-23.



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 18:24           ` [gentoo-user] undetected DVD r/w device Peter Humphrey
@ 2010-09-11 20:15             ` Alan McKinnon
  2010-09-11 21:57               ` Peter Humphrey
  2010-09-12  0:15             ` [gentoo-user] " walt
  1 sibling, 1 reply; 28+ messages in thread
From: Alan McKinnon @ 2010-09-11 20:15 UTC (permalink / raw
  To: gentoo-user

Apparently, though unproven, at 20:24 on Saturday 11 September 2010, Peter 
Humphrey did opine thusly:

> On Saturday 11 September 2010 18:50:04 Mick wrote:
> > Deselect that which is deprecated and will be removed soon
> 
> I hope it won't. I have one box whose drives the new drivers cannot
> detect - at least, nothing I've tried has worked so far.


That's the beauty of Linux. When Linus decides he's had enough keeping old 
stuff hanging around and rips it out, you just put it right back in your own 
copies.


-- 
alan dot mckinnon at gmail dot com



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 20:15             ` Alan McKinnon
@ 2010-09-11 21:57               ` Peter Humphrey
  2010-09-11 22:47                 ` Mick
  0 siblings, 1 reply; 28+ messages in thread
From: Peter Humphrey @ 2010-09-11 21:57 UTC (permalink / raw
  To: gentoo-user

On Saturday 11 September 2010 21:15:12 Alan McKinnon wrote:
> Apparently, though unproven, at 20:24 on Saturday 11 September 2010,
> Peter Humphrey did opine thus:
> > On Saturday 11 September 2010 18:50:04 Mick wrote:
> > > Deselect that which is deprecated and will be removed soon
> > 
> > I hope it won't. I have one box whose drives the new drivers cannot
> > detect - at least, nothing I've tried has worked so far.
> 
> That's the beauty of Linux. When Linus decides he's had enough
> keeping old stuff hanging around and rips it out, you just put it
> right back in your own copies.

Hmm. Not sure how I'd do that. I'd just assumed that I'd stick with a 
kernel version that worked. You know: mask anything later than version 
99.94. And yes, I do remember that version, but in the 1.n.n series.

-- 
Rgds
Peter.          Linux Counter 5290, 1994-04-23.



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device
  2010-09-11 21:57               ` Peter Humphrey
@ 2010-09-11 22:47                 ` Mick
  0 siblings, 0 replies; 28+ messages in thread
From: Mick @ 2010-09-11 22:47 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: Text/Plain, Size: 1060 bytes --]

On Saturday 11 September 2010 22:57:12 Peter Humphrey wrote:
> On Saturday 11 September 2010 21:15:12 Alan McKinnon wrote:
> > Apparently, though unproven, at 20:24 on Saturday 11 September 2010,
> > 
> > Peter Humphrey did opine thus:
> > > On Saturday 11 September 2010 18:50:04 Mick wrote:
> > > > Deselect that which is deprecated and will be removed soon
> > > 
> > > I hope it won't. I have one box whose drives the new drivers cannot
> > > detect - at least, nothing I've tried has worked so far.
> > 
> > That's the beauty of Linux. When Linus decides he's had enough
> > keeping old stuff hanging around and rips it out, you just put it
> > right back in your own copies.
> 
> Hmm. Not sure how I'd do that. I'd just assumed that I'd stick with a
> kernel version that worked. You know: mask anything later than version
> 99.94. And yes, I do remember that version, but in the 1.n.n series.

Is it possible to create one's own patch for drivers from old kernel(s) and 
use that to patch later versions?!  O_O
-- 
Regards,
Mick

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 28+ messages in thread

* [gentoo-user] Re: undetected DVD r/w device
  2010-09-11 18:24           ` [gentoo-user] undetected DVD r/w device Peter Humphrey
  2010-09-11 20:15             ` Alan McKinnon
@ 2010-09-12  0:15             ` walt
  2010-09-12  9:05               ` Peter Humphrey
  1 sibling, 1 reply; 28+ messages in thread
From: walt @ 2010-09-12  0:15 UTC (permalink / raw
  To: gentoo-user

On 09/11/2010 11:24 AM, Peter Humphrey wrote:
> On Saturday 11 September 2010 18:50:04 Mick wrote:
>
>> Deselect that which is deprecated and will be removed soon
>
> I hope it won't. I have one box whose drives the new drivers cannot
> detect - at least, nothing I've tried has worked so far.

That seems very odd.  Is there something exotic about those drives?

The new driver sees the controller but the controller doesn't see
the drives?

Or, if the kernel doesn't see the controller then maybe consider
adding the SATA_AHCI driver as a test.  I'm still a bit confused
when trying to figure out which controller uses which driver, but
I've been tripped up with that particular driver before.




^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] Re: undetected DVD r/w device
  2010-09-12  0:15             ` [gentoo-user] " walt
@ 2010-09-12  9:05               ` Peter Humphrey
  0 siblings, 0 replies; 28+ messages in thread
From: Peter Humphrey @ 2010-09-12  9:05 UTC (permalink / raw
  To: gentoo-user

On Sunday 12 September 2010 01:15:56 walt wrote:
> On 09/11/2010 11:24 AM, Peter Humphrey wrote:
> > On Saturday 11 September 2010 18:50:04 Mick wrote:
> >> Deselect that which is deprecated and will be removed soon
> > 
> > I hope it won't. I have one box whose drives the new drivers cannot
> > detect - at least, nothing I've tried has worked so far.
> 
> That seems very odd.  Is there something exotic about those drives?

Nothing at all. Bog-standard IDE disk and ATA CD-ROM in a Compaq Evo P4 
box. The disk controller is an Intel 82801DB ICH4 according to lspci.

> The new driver sees the controller but the controller doesn't see
> the drives?

Grub (or do I mean init?) can't find a kernel to boot.

> Or, if the kernel doesn't see the controller then maybe consider
> adding the SATA_AHCI driver as a test.

I think the box predates AHCI, though it may be worth a try. I don't 
remember now which options I did try when I was trying to get the new 
kernel drivers to work.

> I'm still a bit confused when trying to figure out which controller
> uses which driver, but I've been tripped up with that particular
> driver before.

Yes, me too. I have one box on which I had to switch AHCI off in the BIOS 
to enable the installation CD to boot, then back on again to boot the  
installed system.

-- 
Rgds
Peter.          Linux Counter 5290, 1994-04-23.



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device SOLVED
  2010-09-11 18:15           ` alain.didierjean
@ 2010-09-12 16:27             ` alain.didierjean
  2010-09-12 16:41               ` Mick
  2010-09-12 18:04               ` Joerg Schilling
  0 siblings, 2 replies; 28+ messages in thread
From: alain.didierjean @ 2010-09-12 16:27 UTC (permalink / raw
  To: gentoo-user

Selon alain.didierjean@free.fr:

> Selon Mick <michaelkintzios@gmail.com>:
>
> > On Saturday 11 September 2010 17:01:29 alain.didierjean@free.fr wrote:
> > > Selon Stéphane Guedon <stephane@22decembre.eu>:
> > > > Le Monday 06 September 2010 17:11:17, alain.didierjean@free.fr a écrit
> :
> > > > > Selon Stroller <stroller@stellar.eclipse.co.uk>:
> > > > > > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> > > > > > > For some unknown reason, my DVD r/w device is not detected as
> such
<snip>
> > > > So, you're not using the latest drivers (scsi emultation of ata hdd)...
>
> > >
> > > I use <*> ATA/ATAPI/MFM/RLL support (DEPRECATED)  ---> in Device Drivers
> as
> > > I've done in the past, and it used to work fine
> >
> > Deselect that which is deprecated and will be removed soon and select the
> > appropriate SCSI drivers for your drives.  There's been a few messages on
> > this
> > list explaining how to go about it.
>
> Done. Works both for cdrom unit and old IDE disk, whch now are know as sr0
> (ex hda) and sdc (wax hdc). cdrecord --checkdrive says


> But that silly k3b returns
> No optical drive found.
> K3b did not find any optical device in your system.
> Solution : Make sure HAL daemon is running, it is used by K3b for finding
> devices.
>  and on the terminal

Finally solved, a matter of permissions for cdrecord and cdrdao, as explained in
/usr/share/doc/k3b-2.0.0/PERMISSIONS.bz2. I've been fooled by this stupid error
message. Thanks to all who helped,

--
~adj~



^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device SOLVED
  2010-09-12 16:27             ` [gentoo-user] undetected DVD r/w device SOLVED alain.didierjean
@ 2010-09-12 16:41               ` Mick
  2010-09-12 18:04               ` Joerg Schilling
  1 sibling, 0 replies; 28+ messages in thread
From: Mick @ 2010-09-12 16:41 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: Text/Plain, Size: 2102 bytes --]

On Sunday 12 September 2010 17:27:36 alain.didierjean@free.fr wrote:
> Selon alain.didierjean@free.fr:
> > Selon Mick <michaelkintzios@gmail.com>:
> > > On Saturday 11 September 2010 17:01:29 alain.didierjean@free.fr wrote:
> > > > Selon Stéphane Guedon <stephane@22decembre.eu>:
> > > > > Le Monday 06 September 2010 17:11:17, alain.didierjean@free.fr a
> > > > > écrit
> > > > > 
> > > > > > Selon Stroller <stroller@stellar.eclipse.co.uk>:
> > > > > > > On 6 Sep 2010, at 09:55, alain.didierjean@free.fr wrote:
> > > > > > > > For some unknown reason, my DVD r/w device is not detected as
> > 
> > such
> 
> <snip>
> 
> > > > > So, you're not using the latest drivers (scsi emultation of ata
> > > > > hdd)...
> > > > 
> > > > I use <*> ATA/ATAPI/MFM/RLL support (DEPRECATED)  ---> in Device
> > > > Drivers
> > 
> > as
> > 
> > > > I've done in the past, and it used to work fine
> > > 
> > > Deselect that which is deprecated and will be removed soon and select
> > > the appropriate SCSI drivers for your drives.  There's been a few
> > > messages on this
> > > list explaining how to go about it.
> > 
> > Done. Works both for cdrom unit and old IDE disk, whch now are know as
> > sr0 (ex hda) and sdc (wax hdc). cdrecord --checkdrive says
> > 
> > 
> > But that silly k3b returns
> > No optical drive found.
> > K3b did not find any optical device in your system.
> > Solution : Make sure HAL daemon is running, it is used by K3b for finding
> > devices.
> > 
> >  and on the terminal
> 
> Finally solved, a matter of permissions for cdrecord and cdrdao, as
> explained in /usr/share/doc/k3b-2.0.0/PERMISSIONS.bz2. I've been fooled by
> this stupid error message. Thanks to all who helped,

Glad you solved it!

My permissions are:

$ ls -la /usr/bin/cdrecord 
-rws--x--x 1 root root 314352 Jul 22 16:51 /usr/bin/cdrecord

$ ls -la /usr/bin/cdrdao
-rwxr-xr-x 1 root root 569352 Jul 22 16:55 /usr/bin/cdrdao

and I had to add my user to the cdrom group, but both of the above binaries 
are not in the cdrom group.
-- 
Regards,
Mick

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 28+ messages in thread

* Re: [gentoo-user] undetected DVD r/w device SOLVED
  2010-09-12 16:27             ` [gentoo-user] undetected DVD r/w device SOLVED alain.didierjean
  2010-09-12 16:41               ` Mick
@ 2010-09-12 18:04               ` Joerg Schilling
  1 sibling, 0 replies; 28+ messages in thread
From: Joerg Schilling @ 2010-09-12 18:04 UTC (permalink / raw
  To: gentoo-user

alain.didierjean@free.fr wrote:

> > But that silly k3b returns
> > No optical drive found.
> > K3b did not find any optical device in your system.
> > Solution : Make sure HAL daemon is running, it is used by K3b for finding
> > devices.
> >  and on the terminal
>
> Finally solved, a matter of permissions for cdrecord and cdrdao, as explained in
> /usr/share/doc/k3b-2.0.0/PERMISSIONS.bz2. I've been fooled by this stupid error
> message. Thanks to all who helped,

Not needed for cdrecord as you noticed with your test already.



Jörg

-- 
 EMail:joerg@schily.isdn.cs.tu-berlin.de (home) Jörg Schilling D-13353 Berlin
       js@cs.tu-berlin.de                (uni)  
       joerg.schilling@fokus.fraunhofer.de (work) Blog: http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily



^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2010-09-12 18:04 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-06  8:55 [gentoo-user] undetected DVD r/w device alain.didierjean
2010-09-06 10:30 ` Jake Moe
2010-09-06 11:13 ` Stroller
2010-09-06 15:04   ` alain.didierjean
2010-09-06 15:06   ` alain.didierjean
2010-09-06 15:11   ` alain.didierjean
2010-09-06 15:20     ` alain.didierjean
2010-09-10 14:25     ` alain.didierjean
2010-09-10 23:49       ` [gentoo-user] " walt
2010-09-11  6:38         ` alain.didierjean
2010-09-11 12:29           ` Stroller
2010-09-11 11:10     ` [gentoo-user] " Stéphane Guedon
2010-09-11 16:01       ` alain.didierjean
2010-09-11 17:50         ` Mick
2010-09-11 18:15           ` alain.didierjean
2010-09-12 16:27             ` [gentoo-user] undetected DVD r/w device SOLVED alain.didierjean
2010-09-12 16:41               ` Mick
2010-09-12 18:04               ` Joerg Schilling
2010-09-11 18:24           ` [gentoo-user] undetected DVD r/w device Peter Humphrey
2010-09-11 20:15             ` Alan McKinnon
2010-09-11 21:57               ` Peter Humphrey
2010-09-11 22:47                 ` Mick
2010-09-12  0:15             ` [gentoo-user] " walt
2010-09-12  9:05               ` Peter Humphrey
2010-09-06 12:05 ` [gentoo-user] " Joerg Schilling
2010-09-11 15:57   ` alain.didierjean
2010-09-11 17:48     ` Mick
2010-09-11 18:01       ` Joerg Schilling

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox