悠扬随风 发表于 2024-7-18 04:41:55

Ubuntu20.04安装Nvidia显卡驱动教程

1、安装驱动前一定要更新软件列表和安装须要软件、依靠(必须)

sudo apt-get update      #更新软件列表
sudo apt-get install g++
sudo apt-get install gcc
sudo apt-get install make 2、禁用nouveau

nouveau是Ubuntu自带的显卡驱动,但他是核显,我这里想安装独显,就得把他禁掉。
1、创建文件,如果没有下载vim编辑器,将vim换成gedit即可
$ sudo vim /etc/modprobe.d/blacklist-nouveau.conf 2、在文件中插入以下内容,将nouveau参加黑名单,默认不开启
blacklist nouveau
options nouveau modeset=0 3、输入以下命令使禁用见效然后重启
sudo update-initramfs -u   #更新系统
sudo reboot 4、重启后验证
lsmod | grep nouveau 如果回车后无反应,则禁用成功
3、先完全卸载之前的显卡驱动

3.1、ppa源文件卸载(方式一):

$ sudo apt-get remove --purge nvidia* 3.2、runfile源文件卸载(方式二):

$ sudo ./NVIDIA-Linux-x86_64-384.59.run --uninstall 4、安装显卡驱动

下载地址:NVIDIA GeForce 驱动程序 - N 卡驱动 | NVIDIA
4.1、ppa源驱动安装(方式一)---已经测试安装成功

现在先容最简单的安装方法
4.1.1、查询电脑最得当的显卡驱动版本

ubuntu-drivers devices https://img-blog.csdnimg.cn/img_convert/8f52608426bb1bd76cb7431629737b19.png
如图,我的电脑最佳显卡驱动版本为nvidia-driver-525, 固然最好是别安装最新的驱动版本,以防后面出现兼容问题
4.1.2、随后用命令行进行安装

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-driver-525 #此处数字要对应上面查询到的版本号
sudo apt-get install mesa-common-dev 注意: 如果前面没有禁用secure boot,则在安装过程中会提示设置一个暗码,在重启时需要输入暗码验证以禁用secure boot,重启后会出现蓝屏,这时间不能直接选择continue,而应该按下按键,选择Enroll MOK, 确认后在下一个选项中选择continue,接着输入安装驱动时设置的暗码,开机。
安装完成后重启
sudo reboot 重启后在终端验证
nvidia-smi 若出现GPU列表,则安装成功
4.3、使用软件和更新安装(方式二)--(没有测试过)

ubuntu20.04 安装NVIDIA驱动很容易,只只需要打开系统设置->软件和更新->附加驱动->选择NVIDIA驱动->应用更改。该界面会主动根据电脑上的GPU表现保举的NVIDIA显卡驱动。
https://img-blog.csdnimg.cn/1869429b41fa4c9c93ad7bf8b7907364.png
 4.3、下载runfile 文件安装(方式三)--(没有测试过)
进入tty模式安装(方式二)--暂时还没有测试
由于ubuntu20 之后的版本桌面表现, Ubuntu20.04之后的版本的表现是gdm3,老版本Ubuntu的表现是lightdm。
因此进入命令行界面的方式有所不同:
4.2.1. 进入命令行界面

sudo telinit 3 (这时进入了玄色的命令行界面,不要慌,先会输入用户名和暗码)
4.2.2. 关闭表现服务

Ubuntu22.04的表现是gdm3,老版本Ubuntu的表现是lightdm
sudo service gdm3 stop 4.2.3. 给安装文件赋予权限,然后运行安装

sudo chmod a+x NVIDIA-Linux-x86_64-525.105.17.run
sudo ./NVIDIA-Linux-x86_64-525.105.17.run -no-opengl-files -no-x-check -no-nouveau-check 注:只有禁用opengl如许安装才不会出现循环登岸的问题
-no-x-check:安装驱动时关闭X服务
-no-nouveau-check:安装驱动时禁用nouveau
-no-opengl-files:只安装驱动文件,不安装OpenGL文件
安装过程的一些选项

   An alternate method of installing the NVIDIA driver was detected. (xxxxxxxxxxxxx).Please review the message provided by the maintainer of this alternate installation method and decide how to proceed:
选择 “continue installation”

Install Nvidia's 32-bit compatibility libraries?
选择 "No"

Would you like to run the nvidia-xconfig utility to automatically update your X configuration file so that the NVIDIA X driver dill be used dhen you restart X? Any pre-existing X configuration file will be backed up.
选择 "Yes"
4.2.4、打开表现服务


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: Ubuntu20.04安装Nvidia显卡驱动教程