有两种方法,一种是用Nvidia官方的驱动,手动安装。另一种是使用系统自带的"软件和更新"附加驱动更新,直接选择应用更新,就可以自动安装了,但是不稳定,要一个个试是否可以使用。
下面是使用官方驱动安装
1、准备工作
更新软件列表等
sudo apt-get update
sudo apt-get install g++ gcc make
uname -r
sudo apt-get install linux-headers-'这里接上刚刚那行指令的输出'
查看gpu型号
lspci | grep -i nvidia
下载驱动
官方驱动 | NVIDIA下载适用于 GeForce、TITAN、NVIDIA RTX、数据中心、GRID 等 NVIDIA 产品的新驱动。https://www.nvidia.cn/Download/index.aspx?lang=cn
卸载旧的
sudo apt-get remove --purge nvidia-*
禁用nouveau
sudo gedit /etc/modprobe.d/blacklist.conf
blacklist.conf末尾添加:
blacklist nouveau
options nouveau modeset=0
终端输入运行后,重启电脑
sudo update-initramfs –u
下列指令中没有输出则屏蔽成功
lsmod | grep nouveau
一般自带有显示管理器,以防万一
sudo apt-get install lightdm
2、开始安装
按Ctrl + Alt + F1~F6中的一个 (对应tty1~tty6),然后输入用户名和密码,密码是看不见的。
禁用X-window服务
sudo service lightdm stop
cd命令进入到你存放驱动的目录
sudo chmod 777 NVIDIA-Linux-x86_64-****.run
sudo ./NVIDIA-Linux-x86_64-****.run 这里补全下载的驱动文件
需要选择几个选项,首先是accept协议
1.The distribution-provided pre-install script failed! Are you sure you want to continue?
选continue installation
2.Nvidia's 32-bit compatibility libraries? 选No
3.Would you like to register the kernel module souces with DKMS? This will allow DKMS to automatically build a new module, if you install a different kernel later?
选 No
4.Would you like to run the nvidia-xconfigutility to automatically update your x configuration so that the NVIDIA x driver will be used when you restart x? Any pre-existing x confile will be backed up.
选 Yes
3、完成安装文章来源:https://www.toymoban.com/news/detail-752738.html
重启x-window服务
sudo service lightdm start
有可能会黑屏,可以再次进入tty,重启电脑
sudo reboot
记得在bios里关闭安全启动。
用 nvidia-smi 查看是否有驱动信息。文章来源地址https://www.toymoban.com/news/detail-752738.html
到了这里,关于服务器重装nvidia最新显卡驱动(官方驱动)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!