NVidia 显卡问题。GeForce 820M

NVidia 显卡问题。GeForce 820M

由于我的 Windows 10 带有 GeForce 显卡,因此我安装了 ubuntu 14.04 LTS 并卸载了 Windows。现在我遇到了一个问题(即)当我传递此命令时

lspci | grep VGA

我的结果是

00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)

它没有显示我的 NVidia 图形驱动程序。我尝试了 ubuntu 论坛和 stack exchange 中给出的所有答案,但仍然无法摆脱它。需要解决方案。

答案1

打开终端并执行:

lspci -k | grep -EA2 'VGA|3D'  

输出内容如下:

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

现在您可以看到所有当前正在使用的图形驱动程序。

万一不显示Kernel driver in use: nvidia...

安装 NVIDIA 驱动程序和 Optimus 支持 - 执行:

sudo apt-get update
sudo apt-get install nvidia-352 nvidia-prime
sudo reboot  

更新解决您关于驱动程序存在问题的回复:

步骤 1:卸载当前安装的所有 NVIDIA 相关软件。

突出显示 GRUB 启动菜单中的 Ubuntu 条目并按下E键。
添加nouveau.modeset=0到 linux 行的末尾 - 按下F10以启动。

在登录屏幕上按++Ctrl输入 用户名和密码-执行: AltF1

sudo apt-get purge nvidia*  
sudo reboot  

第 2 步:安装支持 NVIDIA 820M 的最新官方 NVIDIA 驱动程序。

突出显示 GRUB 启动菜单中的 Ubuntu 条目并按下E键。
添加nouveau.modeset=0到 linux 行的末尾 - 按下F10以启动。

在登录屏幕上按++Ctrl输入 用户名和密码-执行:AltF1

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-361 nvidia-prime
sudo reboot

相关内容