I have a HP Compaq NC8000 Notebook with a ATI Radeon Mobility 9600, I could successfully install
FC3 and also the fglrx Driver (3.14.6). The installation works as follows (assuming kernel
2.6.9-1.681_FC3 from the FC3 update).
1. Install Linux Kernel sources:
# rpm -ivh kernel-2.6.9-1.681_FC3.src.rpm
# cd /usr/src/
# tar xvfjp /usr/src/redhat/SOURCES/linux-2.6.9.tar.bz2
# ln -s linux-2.6.9 linux-2.6
2. Install fglrx RPM:
# rpm --replacefiles -ivh fglrx-4.3.0-3.14.6.i386.rpm
(ignore errors)
3. Fix /lib/modules/fglrx/build_mod/2.6.x/Makefile:
Replace the line
-Idrivers/char/drm/ \
by
-I/usr/src/linux-2.6.9/drivers/char/drm \
4. Build and install fglrx.ko:
# cd /lib/modules/fglrx/build_mod/2.6.x
# make
# cp fglrx.ko /lib/modules/2.6.9-1.681_FC3/kernel/drivers/char/drm
# depmod -ae
5. Run fglrxconfig and create a symlink in /etc/X11:
# cd /etc/X11
# ln -s XF86Config-4 xorg.conf
Works nicely for root, but, oddly enough, not for normal users. When I try to login as a non-root user,
the screen freezes for a moment when trying to initialize Gnome. Immediately after that I get logged off.
/var/log/gdm/:0.log contains messages of that sort:
No matching visual for __GLcontextMode with visual class = -1 (-1), nplanes = 0
With KDE everything works nicely. Root can also login without any problems, as mentioned above.
Sounds like a access permission problem. Any ideas?
Thanks
Stefan