我想在我的系统上安装正确的 Nvidia 驱动程序,它有一个 GTX 860M,但lspci | grep VGA|3D
返回:
00:02.0 Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06) 01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 860M] (rev a2)
并进一步检查返回结果,以查看哪个控制器处于活动状态lspci -vnnn | perl -lne 'print if /^\d+\:.+(\[\S+\:\S+\])/' | grep VGA
:
00:02.0 VGA compatible controller [0300]: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller [8086:0416] (rev 06) (prog-if 00 [VGA controller])
上次我尝试直接安装 NVidia 驱动程序时,最终无法启动系统,因为启动时屏幕变黑并且无法进入仅终端模式。
所以我想知道该如何进行?
编辑:我的意思是 14.04,标题中不幸打错了 :(
编辑:上次我尝试安装 NVidia 驱动程序(导致操作系统无法使用)时,我确信我做了类似的事情详细答案在这里
谢谢你的帮助,
罗伯特
答案1
目前,适用于 GEFORCE GTX 860M 的正常工作的 NVIDIA 驱动程序是驱动程序 352 或 361。驱动程序 352 可在 Ubuntu 存储库中找到,驱动程序 361 可从专有 GPU 驱动程序 PPA 中找到。为了获得最佳安装效果,请按照以下说明从 NVIDIA 长期分支安装最新的稳定驱动程序 361。但首先删除您当前尝试安装的所有 NVIDIA 软件...打开终端并执行:
sudo apt-get purge nvidia*
sudo reboot
现在安装NVIDIA 361 驱动和Optimus 支持。
选择Ubuntu 菜单项并按下E键。在linux 行的末尾
添加。 按下键启动进入Ubuntu 系统。nouveau.modeset=0
F10
当登录屏幕出现时按Ctrl++ Alt。输入您的用户名和密码F1,
然后执行:
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-361 nvidia-prime
sudo reboot
重要提示:Space在行中的最后一个字符linux
和之间设置一个nouveau.modeset=0
。
要检查 NVIDIA 驱动程序安装是否成功...打开终端并执行:
lspci -k | grep -EA2 'VGA|3D'
输出将显示您正在使用 NVIDIA 适配器:Kernel driver in use: nvidia
。
00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
Subsystem: CLEVO/KAPOK Computer Device 3501
Kernel driver in use: i915
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 860M] (rev a2)
Subsystem: CLEVO/KAPOK Computer Device 3501
Kernel driver in use: nvidia