Can anyone explain what files control the udev device mapping. I'm trying to get a fresh install of 11.3 to sync a palm pilot with jpilot.
I have created a "10-pilot.rules " file in /etc/udev/rules.d containing:
tesjo wrote:Ok this is not elegant but it is working for me.I created file /etc/udev/rules.d/82-cdrom.rules as follows# Custom CD-ROM symlinks
SUBSYSTEM=="block", KERNEL=="sr0", SYMLINK+="cdrom cdrw dvd dvdrw"I found in my other Gentoo box a /etc/udev/rules.d/70-persistent-cd.rules, which i adapted for this Archlinux machine :SUBSYSTEM=="block", ENV{ID_CDROM
A very standard and useful rule (/etc/udev/rules.d/99-hide-drives.conf)KERNEL=="sda1", ENV{UDISKS_IGNORE}:="1"KERNEL=="sda2", ENV{UDISKS_IGNORE}:="1"KERNEL=="sda4", ENV{UDISKS_IGNORE}:="1"seems to be completely ignored.
At last, I seem to have found a solution. I have no idea how or why this works, but after removing the ACTION=="add" part, everything works fine.
How about the nice & simple:KERNEL=="lp*", DRIVERS=="usblp", GROUP="lp", MODE="664"
brebs
https://bbs.archlinux.org/profile.php?id=10353
2013-02-12T10:01:39Z
Hello,
I have an USB hard disk with an ext4 file system.
Every time I plug in the disk or boot the system while the disk is on,
it will be mounted.
Hi,
I have just added 4 new scsi hard disks to my system running Fedora 17, I am very new with Linux I need proper steps to configure them with udev, after formatting the disks show up as sdb1, sdc1, sdd1 and sde1 under /dev
I have created a udev rule as under
vi /etc/udev/rules.d/99-oracle-asmdevices.rules
KERNEL=="sdb1", NAME="DISK01", OWNER="oracle", GROUP=
kernel_geek wrote:However, if I try to run it as a normal user, I get USB permissions errors.I've added myself to the group plugdev, and tried the following udev rules:ATTRS{idVendor}=="1ed8", SYSFS{idProduct}=="0004", MODE="664", GROUP="pludev"
ATTRS{idVendor}=="1ed8", SYSFS{idProduct}=="0005", MODE="664", GROUP="plug
Strike0 wrote:Anyhow, two ways to try alternatively: 2. Use Udev for something similar by creating e.g. /etc/udev/rules.d/70-persistent-net.rulesSUBSYSTEM=="net", ACTION=="add", DRIVERS=="rt2500pci", KERNEL=="wlan0", RUN="/sbin/iwconfig wlan0 power off"Have a go at one at a time.Solution 2 is worked for me.