Re: [CentOS] Help with custom udev rule

2008-10-27 Thread Clint Dilks
Filipe Brandenburger wrote: Found another interesting detail. net/tun is listed in /etc/udev/makedev.d/50-udev.nodes, which starts with this comment: # These device have to be created manually I just didn't find who/what actually creates those, and using which permissions. Anyway, another clue i

Re: [CentOS] Help with custom udev rule

2008-10-23 Thread Filipe Brandenburger
Hi, Found another interesting detail. net/tun is listed in /etc/udev/makedev.d/50-udev.nodes, which starts with this comment: # These device have to be created manually I just didn't find who/what actually creates those, and using which permissions. Anyway, another clue in your puzzle. HTH, Fili

Re: [CentOS] Help with custom udev rule

2008-10-23 Thread Filipe Brandenburger
Hi, A google search led me to: http://reactivated.net/writing_udev_rules.html There it states that you generally will want your rules before the system default rules, but in any case it should apply all the rules, not only the first match, so putting your rule after the defaults could have some e

Re: [CentOS] Help with custom udev rule

2008-10-23 Thread Filipe Brandenburger
Hi, On Thu, Oct 23, 2008 at 21:28, Clint Dilks <[EMAIL PROTECTED]> wrote: > something like 10-local.rules which contains > KERNEL=="tun", NAME="net/%k", OWNER="root", GROUP="vboxusers", MODE="0660" > But unfortunately when I reboot the permissions are still > 0 crw--- 1 root root 10, 200 Oct

[CentOS] Help with custom udev rule

2008-10-23 Thread Clint Dilks
Hi, I am trying create a custom udev rule to change the group and permissions on /dev/net/tun. Some research indicated that rather than directly editing the rule in /etc/udev/rules.d/50-udev.rules that I should create my own local rules file something like 10-local.rules which contains KERN