Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 79353 - udev: permissions on /dev/nvidia* devices incorrect
Summary: udev: permissions on /dev/nvidia* devices incorrect
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-24 09:54 UTC by Greg Etling
Modified: 2005-01-24 10:45 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Greg Etling 2005-01-24 09:54:21 UTC
The nvidia package has specific permissions it needs to be able to run the glx extension. From  /usr/share/doc/nvidia-glx-1.0.6629-r1/README.gz"
   
   Next, you will need to reset the permissions on the device files back
   to their original permissions and owner.  You can do that with the
   following commands:
        chmod 0666 /dev/nvidia* chown root /dev/nvidia*

However /etc/udev/permissions.d/50-udev.permissions sets the following perms by default:

   nvidia*:root:video:0660

I had previously solved the permissions issue under udev (there is a related pam issue in console.perms), but when I upgraded to udev, the problem recurred for the reasons shown above. In the meantime, I will obviously work around by using the following correct line in my /etc/udev/permissions.d/10-udev.permissions file:

   nvidia*:root:video:0666


Reproducible: Always
Steps to Reproduce:
Comment 1 Gregorio Guidi (RETIRED) gentoo-dev 2005-01-24 10:12:01 UTC
The idea is that you must be in the 'video' group to access hardware acceleration.
Comment 2 Greg Etling 2005-01-24 10:45:48 UTC
Ah yes, I see now...the nvidia howto documentation has been updated to reflect this policy. Thanks.