Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[solv] libGL error: failed to open DRM: Operation not perm..
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
schiotz
Apprentice
Apprentice


Joined: 20 Jan 2004
Posts: 206
Location: Denmark

PostPosted: Wed Feb 14, 2007 12:02 pm    Post subject: [solv] libGL error: failed to open DRM: Operation not perm.. Reply with quote

When I start glxgears, I get the error in the title. I am using a Radeon Mobility X1400 card on a ThinkPad T60 with the ATI drivers. Undoubtedly I have configured something wrong, any guesses? :)

Code:
schiotz@newdemokrit ~ $ glxgears
libGL error: failed to open DRM: Operation not permitted
libGL error: reverting to (slow) indirect rendering
2188 frames in 5.2 seconds = 418.432 FPS
2160 frames in 5.3 seconds = 411.195 FPS

schiotz@newdemokrit ~ $ eselect opengl list
Available OpenGL implementations:
  [1]   ati *
  [2]   xorg-x11


Last edited by schiotz on Thu Feb 15, 2007 8:53 am; edited 1 time in total
Back to top
View user's profile Send private message
mark_alec
Bodhisattva
Bodhisattva


Joined: 11 Sep 2004
Posts: 6066
Location: Melbourne, Australia

PostPosted: Wed Feb 14, 2007 12:23 pm    Post subject: Reply with quote

If you try running glxgears as root, do you get that error? If not, try adding yourself to the video group `gpasswd -a schiotz video` to see if that fixes it.
_________________
www.gentoo.org.au || #gentoo-au
Back to top
View user's profile Send private message
tdennist
Tux's lil' helper
Tux's lil' helper


Joined: 11 May 2004
Posts: 145

PostPosted: Wed Feb 14, 2007 12:57 pm    Post subject: Reply with quote

To get some more verbose error messages, try this:

Code:

$ LIBGL_DEBUG=verbose glxinfo


And tell us what that says.
_________________
Registered Linux user #356840

Fleens??! YOU'RE not FLEENS! Well, whatever you are....MAKE ME A PIZZA!!?
Back to top
View user's profile Send private message
schiotz
Apprentice
Apprentice


Joined: 20 Jan 2004
Posts: 206
Location: Denmark

PostPosted: Wed Feb 14, 2007 2:31 pm    Post subject: Reply with quote

Thanks for the replies! I get no error as root. I ran the suggested debugging command as myself and as root, and compared the results. This indicates that the problem is permissions on /dev/dri/card0:

Code:
schiotz@newdemokrit ~ $ LIBGL_DEBUG=verbose glxinfo
name of display: :0.0
libGL: XF86DRIGetClientDriverName: 8.32.5 fglrx (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/fglrx_dri.so
libGL error: dlopen /usr/lib/dri/fglrx_dri.so failed (/usr/lib/dri/fglrx_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib/dri/fglrx_dri.so
libGL error: dlopen /usr/lib/dri/fglrx_dri.so failed (/usr/lib/dri/fglrx_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib64/dri/fglrx_dri.so
libGL error: dlopen /usr/lib64/dri/fglrx_dri.so failed (/usr/lib64/dri/fglrx_dri.so: cannot open shared object file: No such file or directory)
libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri//fglrx_dri.so
libGL error: dlopen /usr/lib32/xorg/modules/dri//fglrx_dri.so failed (/usr/lib32/xorg/modules/dri//fglrx_dri.so: wrong ELF class: ELFCLASS32)
libGL: OpenDriver: trying /usr/lib64/xorg/modules/dri/fglrx_dri.so
libGL: XF86DRIGetClientDriverName: 8.32.5 fglrx (screen 0)
drmOpenByBusid: busid is PCI:1:0:0
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Permission denied)
drmOpenDevice: open result is -1, (Permission denied)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -13
  ....

Note that alll the first error until the drmOpenByBusid line also occur for root, so it is apparently not a real problem

Code:
ls -l /dev/dri/card0
crw-rw---- 1 root root 226, 0 2007-02-14 11:04 /dev/dri/card0


Should the group be video? If so, what causes this problem?

Best regards

Jakob
Back to top
View user's profile Send private message
madisonicus
Veteran
Veteran


Joined: 20 Sep 2006
Posts: 1130

PostPosted: Wed Feb 14, 2007 4:04 pm    Post subject: Reply with quote

Do you have
Code:
Section "dri"
        Mode 0666
EndSection
In your xorg.conf?
_________________
Please add [SOLVED] to your message title if you feel that your question has been answered.
------
Intel Q9300 Core2 Quad * Gigabyte GA-EP35C-DS3R
Samsung x360
AMD64 x2 4200+ * TF7050-M2 * HTPC
ZOTAC ION A-U Mini-ITX * HTPC
Back to top
View user's profile Send private message
tdennist
Tux's lil' helper
Tux's lil' helper


Joined: 11 May 2004
Posts: 145

PostPosted: Wed Feb 14, 2007 9:35 pm    Post subject: Reply with quote

Actually, I believe the problem lies in this line:

Code:
libGL error: dlopen /usr/lib/dri/fglrx_dri.so failed (/usr/lib/dri/fglrx_dri.so: cannot open shared object file: No such file or directory)


If it can't find the driver file, obviously it can't load it :p. I had the a very similar problem, and resolved it by doing
Code:
# find / | grep -i fglrx_dri
and then symlinking it to /usr/lib/xorg/modules/fglrx_dri.so.

Hope this helps!

Also, see this thread: https://forums.gentoo.org/viewtopic-t-520835.html specifically page 2.
_________________
Registered Linux user #356840

Fleens??! YOU'RE not FLEENS! Well, whatever you are....MAKE ME A PIZZA!!?
Back to top
View user's profile Send private message
schiotz
Apprentice
Apprentice


Joined: 20 Jan 2004
Posts: 206
Location: Denmark

PostPosted: Thu Feb 15, 2007 8:54 am    Post subject: Reply with quote

madisonicus wrote:
Do you have
Code:
Section "dri"
        Mode 0666
EndSection
In your xorg.conf?


Thanks! That was the problem!

/Jakob
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum