Centos系统出现: NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver

Centos: NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver

Centos服务器重启后出现显卡驱动无法使用的情况,查了好多教程全部都是基于ubuntu系统的,因为使用的Centos所以那些指令输进去是没用的,所以根据我查到的一些教程整合一下出一个基于Centos的基础教程!
输入显卡查看指令出现下面的情况:

nvidia-smi

重启后输入显卡查看指令后出现
通过下面两步就可以完成修护:
第一步,安装dkms

sudo yum install dkms

Centos系统出现: NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver_第1张图片
第二步,重新安装对应nvidia的驱动模块(根据服务器版本号填写)
这里需要知道自己的驱动版本号,输入下面两条指令查看显卡驱动版本

cd /usr/src
ls

在这里插入图片描述
查到对应的驱动版本号载使用

sudo dkms install -m nvidia -v 470.103.01

Centos系统出现: NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver_第2张图片
然后再输入nvidia-smi就可以查看到对应的显卡信息:
Centos系统出现: NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver_第3张图片
然后就可以使用显卡了!

你可能感兴趣的:(centos,服务器,linux)