I just setup a FireWire audio interface. Everything works fine, except for I need rw-rw-rw- permissions on /dev/fw0. I can always sudo chmod 666 /dev/fw0 just before setting the thing up, but then it will be gone on the next rebooting.

The solution to modify /etc/udev/rules.d/020-permissions.rules (which is for Ubuntu Breezy) doesn't go well for Ubuntu 10.10 Maverick because there is no /etc/udev/rules.d directory.

What should i do in order for /dev/fw0 to come up with 666 permissions?

Thanks in advance, Ilya

link|improve this question
it exists for me...on 11.04 – aking1012 Jan 25 '11 at 23:21
feedback

migrated from serverfault.com Jan 22 '11 at 19:17

This question came from our site for system administrators and desktop support professionals.

1 Answer

up vote 0 down vote accepted

Well, I finally found out how to do this!

First, we need to make a /etc/udev/rules.d directory:

sudo mkdir /etc/udev/rules.d

Next we have to define a new rule:

sudo -s
echo 'KERNEL=="fw*", GROUP="video", MODE="0664"' > /etc/udev/rules.d/80-firewire.rules
exit

And finally we have to add our username to the 'video' group. The permissions will be set after reboot.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.