centos 7上先不用安装显卡驱动,cuda中自带了显卡驱动程序。可以用cuda中自带的显卡驱动程序。
1、centos7上blacklist.conf的位置是在/usr/lib/modprobe.d/dist-blacklist.conf
注释掉:#blacklist nvidiafb
添加blacklist:
blacklist nouveau
options nouveau modeset=0
2、init3 下面运行cuda-**.run,其中第二步为安装显卡驱动程序。
3、安装完成之后,配置环境变量:
在/etc/profile文件或者/etc/profile.d/目录下,添加环境变量:
export CUDA_HOME=/usr/local/cuda-7.0 (你的cuda安装目录)
export PATH=$CUDA_HOME/bin:$PATH
export LD_LIBRARY_PATH=$CUDA_HOME/lib64/:$LD_LIBRARY_PATH
export INCLUDE=$CUDA_HOME/include:$INCLUDE