欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

centos7.6 安装NVIDIArtc2070显卡驱动

程序员文章站 2024-03-19 16:59:34
...

centos7.6 安装NVIDIArtc2070显卡驱动

禁用第三方驱动

  1. 系统进入字符模式
systemctl set-default multi-user.target
  1. 禁止nouveau第三方驱动
    在/etc/modprobe.d/blacklist.conf
    或 /lib/modprobe.d/dist-blacklist.conf
    添加:
 blacklist nouveau
 options nouveau modeset=0
  1. 备份原来的 initramfs nouveau image镜像
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img  
  1. 创建新的 initramfs image镜像
dracut /boot/initramfs-$(uname -r).img  $(uname -r)  
  1. 重新启动机器reboot,检查nouveau driver确保没有被加载!
lsmod | grep nouveau

安装相关依赖

yum -y groupinstall "GNOME Desktop" "Development Tools"
yum -y install kernel-devel
yum -y install epel-release
yum -y install dkms

下载官网驱动

https://www.nvidia.cn/geforce/drivers/
centos7.6 安装NVIDIArtc2070显卡驱动https://www.nvidia.cn/drivers/results/166225/

安装

chmod +x NVIDIA-Linux-x86_64_455.38.run
./NVIDIA-Linux-x86_64_455.38.run

检查驱动状态
执行nvidai-smi
centos7.6 安装NVIDIArtc2070显卡驱动恢复到图形模式

systemctl set-default graphical.target

安装完成。