|
发表于 2009-8-16 01:31:27
|
显示全部楼层
我安装官方驱动方法(我的是unstalbe 2.6.30-1内核,GNOME桌面)
1 apt-get install linux-patch-debian-2.6.30 linux-source-2.6.30 linux-tree-2.6.30 linux-headers-2.6.30-1-686
应该只安装 linux-source 和 linux-headers就可以了。
2 如果已经安装了桌面并启动的,请关闭X
/etc/init.d/gdm stop
3 安装下载的官方驱动
./Download/NVIDIA-Linux-x86-180.51-pkg1.run
按照提示走就是了。
安装完之后可以选择直接让程序帮你运行nvidia-xconfig来生成你需要的xorg.conf,原来的(如果有)会备份成xorg.conf.backup。
然后重启X
/etc/init.d/gdm start
就可以了。
NVIDIA驱动启动的时候默认会有个logo,我不想让那个东西出现,可以修改xorg.conf:
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "NoLogo" "true" #加入这一句(出自gentoo.org)
EndSection
就可以了。 |
|