答案1
从结果来看apt show nvidia-driver-510-server
:
Description: NVIDIA Server Driver metapackage
This metapackage depends on the NVIDIA binary driver and on all of its libraries,
to provide hardware acceleration for OpenGL/GLX/EGL/GLES/Vulkan
applications on either X11 or on Wayland.
此软件包提供了在 X11 或 Wayland 上为 OpenGL/GLX/EGL/GLES/Vulkan 应用程序提供硬件加速所需的基本功能,但它可能不是与您的 NVIDIA 显卡兼容的最佳软件包。为了安装最兼容的专有图形驱动程序,让内置的 ubuntu-drivers 程序自动决定要安装哪些专有图形驱动程序。
删除当前安装的 NVIDIA 专有图形驱动程序。
sudo apt update
sudo apt-get remove '^nvidia'
sudo apt autoremove
sudo reboot
让 ubuntu-drivers 程序自动决定安装哪些专有图形驱动程序。
sudo ubuntu-drivers install
sudo reboot
ubuntu-drivers 的 install 选项会安装适合自动安装的驱动程序及其依赖项。通过这些命令安装的图形驱动程序包将以与其他 apt 包更新相同的方式接收软件更新。