ubuntu16.04 nividia-smi 出现“Make sure that the latest NVIDIA driver is installed and running.”

匿名 (未验证) 提交于 2019-12-02 23:47:01

之前还可以用gpu跑程序,不知更新了啥导致服务器输入nvidia-smi之后显示如下信息:NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.
常见的方法:卸载重装

第一步:卸载原驱动

sudo apt-get remove nvidia-* sudo apt-get autoremove

第二步:临时关闭显示服务

sudo service lightdm stop

第三步:重新安装Nvidia驱动

 

第四步:启动显示服务

sudo service lightdm restart

第五步:查看Nvidia驱动是否安装成功

nvidia-smi如果不管怎么重装nvidia驱动都不对,最后有用的解决方案是更新内核具体操作如下,下载链接:https://kernel.ubuntu.com/~kernel-ppa/mainline/
#系统内核更新先下载,libssl1.1_1.1.0g-2ubuntu4.3_amd64.deb#再下载4个内核deb安装文件linux-headers-4.20.0-042000_4.20.0-042000.201812232030_all.deblinux-headers-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deblinux-image-unsigned-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deblinux-modules-4.20.0-042000-generic_4.20.0-042000.201812232030_amd64.deb#安装内核文件sudo dpkg -i *.deb这时候可能,dpkg command not found ,执行sudo apt -f install就行#安装完成以后,重新启动系统,验证内核的版本uname -r重装驱动和上面一样参考链接:https://blog.csdn.net/u011668104/article/details/79560381
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!