|
发表于 2009-9-25 19:44:47
|
显示全部楼层
兄弟,好像没人给你解决啊!!试试我的方法
安装版本:Debian GNU/Linux Lenny (testing)
系统内核:kernel 2.6.26-2-686
1。系统安装:
Debian官方网站下载最新Lenny(testing) ISO镜像文件,刻盘,正常安装,过程省略,参考Debian安装手册
2。硬件驱动
显卡:NVIDIA GeForceTM Go 7400:
首先查看下系统内核版本:uname -a
我的显示如下
Linux xxx 2.6.26-2-686 #1 SMP Sat Jan 10 18:29:31 UTC 2009 i686 GNU/Linux
apt-get install linux-headers-$(uname -r)
安装(根据自己内核版本替换nvidia-kernel-x.x.x-x-x中的x部分)
apt-get install nvidia-kernel-2.6.26-2-686 nvidia-glx nvidia-settings nvidia-xconfig
配置:
运行nvidia-xconfig
编辑/etc/X11/xorg.conf
参考以下配置修改
Section "Module"
[..]
#Load "dri"
[..]
EndSection
Section "Device"
Identifier "NVIDIA"
Driver "nvidia"
Option "NoLogo"
Option "RenderAccel" "true"
Option "NvAGP" "1"
EndSection
Section "Screen"
[..]
Device "NVIDIA"
[..]
EndSection |
|