如何恢复旧版驱动程序或使用新驱动程序?我有一台 NVIDIA GT 620,但无法启动 Ubuntu

如何恢复旧版驱动程序或使用新驱动程序?我有一台 NVIDIA GT 620,但无法启动 Ubuntu

它向我展示了:

[ FAILED] Failed to start Process Error reports when automatic reporting is enabled 

The NVIDIA GeForce GT 620 GPU installed in the system is supported through the NVIDIA 390.xx Legacy drivers. Please visit http://www.nvidia.com/object/unix.html for more information. The 535.154.05 NVIDIA driver will ignore this GPU. Continuing probe...

我可以启动到 TTY#,但它们不断被 NVRM 消息覆盖。

答案1

有一个名为的工具ubuntu-drivers可以让你列出并切换所有可用的驱动程序。

$ ubuntu-drivers
Usage: ubuntu-drivers [OPTIONS] COMMAND [ARGS]...

Options:
  --gpgpu              gpgpu drivers
  --free-only          Only consider free packages
  --package-list PATH  Create file with list of installed packages (in install mode)
  --no-oem             Do not include OEM enablement packages (these enable an external archive)
  -h, --help           Show this message and exit.

Commands:
  debug        Print all available information and debug data about drivers.
  devices      Show all devices which need drivers, and which packages...
  install      Install a driver [driver[:version][,driver[:version]]]
  list         Show all driver packages which apply to the current system.
  list-oem     Show all OEM enablement packages which apply to this system

因此,只要您能得到提示,您就可以切换到另一个驱动程序。

使用ubuntu-drivers --gpgpu list(或list-oem)显示可用的驱动程序并使用“安装”来安装所选的驱动程序。

相关内容