笔记本电脑:Acer Predator,搭载 Ubuntu 18.04 LTS 和 Windows 10(双启动)
规格:Intel® Core i7-7700HQ NVIDIA GTX 1060 操作系统类型:64 位
到目前为止一切都运行良好,除了我无法在 Ubuntu 中切换到 NVIDIA 显卡。请帮助我,这是我第一次在 PC 上安装 Linux 发行版。
我按照安装教程进行操作本网站,我无法让它工作。
我尝试从 Ubuntu 存储库和 GPU 驱动程序 PPA 安装 NVIDIA 驱动程序。
我阅读了许多帖子并尝试遵循建议。但结果相同,什么都没用。下面是我按执行顺序运行的最后命令的详细分步说明。
清除所有 NVIDIA 内容:
sudo apt purge nvidia-*
清除 PPA:
sudo ppa-purge ppa:graphics-drivers/ppa
自动删除:
sudo apt autoremove
清理:
sudo apt auto-clean
新黑名单:
编辑文件
/etc/modprobe.d/disable-nouveau.conf
并添加以下行:blacklist nouveau blacklist vga16fb blacklist rivafb blacklist nvidiafb blacklist rivatv blacklist amd76_edac alias nouveau off alias lbm-nouveau off options nouveau modeset=0
重新添加 PPA:
sudo add-apt-repository ppa:graphics-drivers/ppa
检查推荐的驱动程序:
ubuntu-drivers devices
从 PPA 安装推荐的驱动程序:
sudo apt install nvidia-driver-396
重新启动系统:
sudo reboot
检查正在使用的驱动程序:
$ lspci -k | grep -EA2 'VGA|3D' 00:02.0 VGA compatible controller: Intel Corporation Device 591b (rev 04) Subsystem: Acer Incorporated [ALI] Device 118a Kernel driver in use: i915 -- 01:00.0 VGA compatible controller: NVIDIA Corporation GP106M [GeForce GTX 1060 Mobile] (rev a1) Subsystem: Acer Incorporated [ALI] GP106M [GeForce GTX 1060 Mobile] Kernel driver in use: nouveau $ lspci -nnk | grep -i vga -A3 00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:591b] (rev 04) Subsystem: Acer Incorporated [ALI] Device [1025:118a] Kernel driver in use: i915 Kernel modules: i915 -- 01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GP106M [GeForce GTX 1060 Mobile] [10de:1c20] (rev a1) Subsystem: Acer Incorporated [ALI] GP106M [GeForce GTX 1060 Mobile] [1025:118b] Kernel driver in use: nouveau Kernel modules: nvidiafb, nouveau, nvidia_drm, nvidia $ nvidia-smi NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running. $ nvidia-settings ERROR: NVIDIA driver is not loaded ERROR: Unable to load info from any available system
答案1
你必须禁用在您的机器上启用安全启动,启动到 BIOS 并在 UEFI 设置中禁用它。
根本不会有任何安全问题,并且同时安装的 Windows 仍会启动。
答案2
我刚刚安装了 Ubuntu 18.04,并且遇到了 NVIDIA GF 550Ti 驱动程序的同样问题。
運行lshw -c video
顯示UNCLAIMED
驅動程式。
以下是我解决这个问题所遵循的步骤:
禁用安全启动。
在终端中,运行以下命令:
sudo ubuntu-drivers list sudo prime-select nvidia sudo apt install nvidia-driver-418-server cd Downloads chmod +x FILENAME.run sudo ./NVIDIA-Linux-x86_64–410.57.run -- no-x-check reboot