ATI Radeon - 3D rendering
System: Slackware 10.1 running kernel 2.6.10, Xorg 6.8.1
Note: this ``tutorial'' is provided as is, it worked for me on the system described above; in any case I won't be responsible for any loss of data or system failure.
First, get your kernel sources and put them in /usr/src/linux (a symlink is also fine). Get the unofficial drivers from http://www.schneider-digital.de/html/download_ati.php. Exit X if it was running. Convert the downloaded rpm package to tgz with rpm2tgz and install the generated package with installpkg. Then log in as root and type the following commands
# cd /lib/modules/fglrx/build_mod
# chmod +x make.sh
# ./make.sh
# cd ..
# chmod +x make_install.sh
# ./make_install.sh
# modprobe fglrx
Now the drivers should be correctly installed and the module loaded. Test it (first run X with startx)
$ glxgears
Try also
$ fgl_glxgears
If you have problems running the last command then you have to add a line to your /etc/fstab
tmpfs /dev/shm tmpfs defaults 0 0
and mount it
# mount /dev/shm
Now everything should work correctly.
Run
$ fglrxinfo
to check the installed drivers. The output for me is
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: MOBILITY RADEON 9000 DDR Generic
OpenGL version string: 1.3.5010 (X4.3.0-8.12.10)
Hope this will help as it helped me :)
Thanks a lot to the tutorial on www.slacky.it
