1

在使用 NVIDIA 显卡 Geforce GF108M [GeForce GT 620M/630M/635M/640M LE] 重新安装 Ubuntu 20.04 时,HDMI 输出不工作,驱动程序似乎也不工作。

ubuntu-drivers devices
== /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0 ==
modalias : pci:v000010DEd00000DE9sv00001043sd00001477bc03sc00i00
vendor   : NVIDIA Corporation
model    : GF108M [GeForce GT 620M/630M/635M/640M LE]
driver   : nvidia-driver-390 - distro non-free recommended
driver   : nvidia-340 - distro non-free
driver   : xserver-xorg-video-nouveau - distro free builtin

缺少两个依赖项:xser​​ver-xorg-video-nvidia-390 和 ibnvidia-cfg1-390

4

3 回答 3

7

此命令在全新安装 Ubuntu 20.04 时失败

sudo ubuntu-drivers autoinstall

缺少 2 个依赖项:xser​​ver-xorg-video-nvidia-390 和 ibnvidia-cfg1-390

手动安装

sudo apt-get install libnvidia-cfg1-390
sudo apt-get install xserver-xorg-video-nvidia-390D
sudo ubuntu-drivers autoinstall
sudo reboot

解决了这个问题。希望这能有所帮助。

于 2020-05-07T13:33:23.410 回答
1

升级到 Ubuntu 20.04 TLS(64 位)后我遇到了同样的问题,在我的 DELL 笔记本电脑 E6420 上使用 18.04 TLS 运行良好。

显卡:NVS 4200M/PCIe/SSE2 / NVS 4200M/PCIe/SSE2

在下面运行后:

sudo ubuntu-drivers 自动安装

重新启动系统

一切都好,HDMI 正在连接到我的高清电视

于 2020-06-05T07:14:32.343 回答
0

我尝试了上述所有答案,但没有奏效。您可以解决它的另一种方法是卸载 Nvidia 然后重新安装它。您通过重新启动计算机来完成。以下是步骤:

$ sudo apt update
$ sudo apt upgrade
$ sudo apt autoremove
$ sudo apt-get remove --purge nvidia*
$ sudo apt-get remove --purge "nvidia*"
$ sudo apt install nvidia-driver-390      (you may need other version)
$ sudo reboot

于 2022-01-15T07:49:58.433 回答