Slackware Linux + ATI video drivers: extremely slow fgl_glxgears problem solution
13th August 2007
I had just installed the latest ATI video drivers for Linux onto my Slackware 11 (with kernel 2.4.33.3); I have Radeon Mobility X600 with 64MiB of non-shared memory.
Running glxgears, I got ~2050 FPS (glxgears window focused) and ~4900 FPS (console window focused, glxgears window out of focus).
But running fgl_glxgears yielded values as low as 1 FPS! As fgl_glxgears is much more similar to the real-world game visuals, it’s apparent that no game will be playable at e.g. 0.2 FPS.
Also, there were numerous repetitions of a single error in the console window:
FGLTexMgr: open of shared memory object failed (Function not implemented) __FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed! fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!
I found the solution which worked perfectly for me:
it’s here (and then found the original/official source):
The display driver requires POSIX Shared Memory to be enabled on the system in order to run these applications correctly. This feature should be enabled by default on most current Linux distributions, but may be disabled intentionally by some system administrators or not included in older distributions.
To enable POSIX Shared Memory on your system, perform the following as root:
1. Add the following line to /etc/fstab (if it isn’t there already): tmpfs /dev/shm tmpfs defaults 0 0
2. Mount shared memory as follows: mount /dev/shm
3. Issue the following command to check that it mounted properly: mount | grep shmIf the mount was successful, then the following output (or similar) should appear:
tmpfs on /dev/shm type tmpfs (rw)At this point, POSIX Shared Memory is enabled. Your 3D applications should run properly and the error message above should no longer occur.
If the output from this command is blank, then the mount failed.
This solution worked perfectly, and for fgl_glxgears I got 421 FPS (fgl_glxgears window focused) and 903 FPS (fgl_glxgears window not focused).
If you read until this point, you may be interested in visiting Suspend2 and ATI video linux overclocking utility.
Finally, a note for myself:
to see current power mode, use:
aticonfig –lsp (–list-powerstates)
to set power mode, use:
aticonfig –set-powerstate=NUMBER
(possible NUMBERs are displayed by –lsp)
November 14th, 2007 at 17:31
would you please give me the details on where I can find the drive onto the internet? and how can I set my video card until it work very well.
thanks for your information
(I’ll wait for it badly)
November 14th, 2007 at 18:51
Reizza,
there’s a link in the first line of the post – http://support.amd.com/us/Pages/AMDSupportHub.aspx
I’ve just checked – that link is definitely working.