|
|
发表于 2004-5-10 23:54:46
|
显示全部楼层
There's no nvidia driver in the kernel, so don't bother with that, instead you need to:
# emerge nvidia-kernel
# emerge nvidia-glx
# nano -w /etc/X11/XF86Config
- (Enabling GLX in /etc/X11/XF86Config)
- Section "Module"
- # This loads the GLX module
- # Load "glx" (Uncomment this line)
- (Tell X to use the NVIDIA driver in /etc/X11/XF86Config)
- Section "Device"
- Identifier "NVIDIA GeForce"
- #Driver "nv"
- Driver "nvidia"
- #VideoRam 32768
- # Insert Clocks lines here if appropriate
- EndSection
复制代码
# modprobe nvidia
# nano -w /etc/modules.autoload.d/kernel-2.4(or kernel-2.6)
(Add the following line to the file.)
nvidia
# opengl-update nvidia
Run startx one more time to make sure that X still comes up (this time with the NVIDIA splash screen, if you have installed the nvidia drivers). |
|