系统在低抓地力模式下运行

系统在低抓地力模式下运行

我正在运行 Ubuntu 14.04.02。我有一台 NVIDIA GF104 GeForce GTX 460

lspci -k | grep -EA2 'VGA|3D 命令输出:

01:00.0 VGA compatible controller: NVIDIA Corporation GF104 [GeForce GTX 460] (rev a1)
01:00.1 Audio device: NVIDIA Corporation GF104 High Definition Audio Controller (rev a1)
Kernel driver in use: snd_hda_intel

cat /var/lib/dkms/nvidia-331/331.113/build/make.log输出:
http://paste.ubuntu.com/11967705

dmesg 输出

答案1

我建议启动到恢复控制台并运行

mount -o remount,rw /
apt-get purge nvidia*
apt-get install nvidia-331
reboot

如果这没有帮助,我建议从恢复升级内核

mount -o remount,rw /
apt-get install linux-generic-lts-vivid

看起来标准 nvidia 软件包存在一些兼容性问题。运行此

sudo add-apt-repository ppa:xorg-edgers/ppa
sudo apt-get update
sudo apt-get install nvidia-352
sudo add-apt-repository -r ppa:xorg-edgers/ppa

然后重新启动。

相关内容