View previous topic :: View next topic |
Author |
Message |
curmudgeon Veteran

Joined: 08 Aug 2003 Posts: 1745
|
Posted: Thu Dec 23, 2010 4:37 am Post subject: Machine not seeing optical drive capabilities |
|
|
I have on one of my machines a Teac DW-224E-A - one of those lovely "combo" drives (reads and writes CDs, reads DVDs).
On every other machine, /dev is populated with links representing all of the capabiliities of the optical drives (/dev/cdrom, /dev/cdrw, /dev/dvd, /dev/dvdrw).
On this machine, I have nothing but /dev/cdrom.
Does anyone know why (and how to fix it)? |
|
Back to top |
|
 |
sebaro Veteran


Joined: 03 Jul 2006 Posts: 1141 Location: Romania
|
Posted: Thu Dec 23, 2010 5:32 am Post subject: |
|
|
You need an udev rule for that.
Run "/lib/udev/write_cd_rules", or make it yourself
/etc/udev/rules.d/70-persistent-cd.rules:
Code: | ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="cdrom", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="cdrw", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="dvd", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="dvdrw", ENV{GENERATED}="1" |
Replace "ENV{ID_PATH}" with yours, see "udevadm info -q path -n /dev/sr0". |
|
Back to top |
|
 |
curmudgeon Veteran

Joined: 08 Aug 2003 Posts: 1745
|
Posted: Thu Dec 23, 2010 7:40 am Post subject: |
|
|
sebaro wrote: | You need an udev rule for that.
Run "/lib/udev/write_cd_rules", |
Well, that didn't quite work. I get:
Code: |
# /lib/udev/write_cd_rules
Missing $DEVPATH.
|
sebaro wrote: | or make it yourself
/etc/udev/rules.d/70-persistent-cd.rules:
Code: | ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="cdrom", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="cdrw", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="dvd", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:07.1-scsi-1:0:0:0", SYMLINK+="dvdrw", ENV{GENERATED}="1" |
Replace "ENV{ID_PATH}" with yours, see "udevadm info -q path -n /dev/sr0". |
I can certainly fix it that way. :) I do wonder why this never got (automatically) update. That file still shows the old cdrom (which I replaced with the combo drive over a year ago):
Code: |
$ dog /etc/udev/rules.d/70-persistent-cd.rules
# 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.
# CD-ROM_CRN-8245B (pci-0000:00:1f.1-scsi-1:0:0:0)
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:1f.1-scsi-1:0:0:0", SYMLINK+="cdrom", ENV{GENERATED}="1"
|
Thank you for your help. |
|
Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|