View previous topic :: View next topic |
Author |
Message |
woodmeister n00b
Joined: 17 Sep 2004 Posts: 39
|
Posted: Tue Jun 21, 2005 10:28 am Post subject: I want my old udev permissions back (udev 056) [solved] |
|
|
Well it seems lots of people are having trouble with permissions and udev 056. I've upgraded to this new version, but now when the usb nodes are created for my palm, they are set so only root and not the tty group has r+w rights. I accpeted the rules changes with etc-update when upgrading. I know that permissions.d settings are not read anymore, so is there any way to get the old permissions file read in rules.d by the new system?
mark
Last edited by woodmeister on Tue Jun 21, 2005 1:58 pm; edited 1 time in total |
|
Back to top |
|
|
thesnowman Guru
Joined: 08 May 2003 Posts: 365 Location: Sydney, Australia
|
Posted: Tue Jun 21, 2005 1:30 pm Post subject: |
|
|
Move your old permissions file to rules.d and then edit it. You will have to change the syntax to match the 50-udev.rules. For example, I used to have a permissions file that looked like this: Code: | rfcomm[0-9]*:root:tty:0660 | .
This gave the tty group read and write permission on /dev/bluetooth/rfcomm devices, which is similar to what you are trying to achieve. To get this working with udev-056 the rule looks like this: Code: | KERNEL="rfcomm[0-9]*", NAME="bluetooth/%k", GROUP="tty", MODE="0660" | . |
|
Back to top |
|
|
woodmeister n00b
Joined: 17 Sep 2004 Posts: 39
|
Posted: Tue Jun 21, 2005 1:59 pm Post subject: |
|
|
Cheers, that's sorted it. It seems that the default gentoo config for 056 has tighter permissions for some devices than previous versions.
mark |
|
Back to top |
|
|
|