/dev/cdrom1,/dev/cdrw1 symlinks made at each boot by udev which i dont want
Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Now each time i boot into etch and checks "ls -l /dev/cd*" it shows /dev/cdrom1 symlinked to /dev/hda and /dev/cdrw1 symlinked to /dev/hda.Is it got something to do with udev...
How can i eliminate this problem..
Well.I kind of found the file which does the thing umm..but afraid to edit the rules of udev
Code:
etch:~# less /etc/udev/rules.d/z25_persistent-cd.rules
# This file was automatically generated by the /lib/udev/write_cd_rules
# program, probably 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.
# HL-DT-STDVD-ROM_GDR8163B (pci-0000:00:1f.1-ide-0:1)
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:1f.1-ide-0:1", SYMLINK+="cdrom", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:1f.1-ide-0:1", SYMLINK+="dvd", ENV{GENERATED}="1"
# SONY_CD-RW_CRX210E1 (pci-0000:00:1f.1-ide-0:0)
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:1f.1-ide-0:0", SYMLINK+="cdrom1", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:1f.1-ide-0:0", SYMLINK+="cdrw1", ENV{GENERATED}="1"
AND
Code:
etch:~# less /etc/udev/rules.d/z75_cd-aliases-generator.rules
# These rules generate rules for the /dev/{cdrom,dvd,...} symlinks and
# write them to /etc/udev/rules.d/z20_persistent-cd.rules.
#
# The default name for this file is z75_cd-aliases-generator.rules.
ACTION=="add", SUBSYSTEM=="block", ENV{GENERATED}!="?*", ENV{ID_CDROM}=="?*", \
PROGRAM="write_cd_rules", SYMLINK+="%c"
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.