赞
踩
sudo se
rvice lightdm stop
(
or sudo stop lightdm)
sudo service lightdm start
安装完成后要设定Library 的Path,有两个方式:
(1)一种是更改LD_LIBRARY_PATH 环境变数:
在用户名的目录下开.bashrc文件,可以通过vi命令或者gedit命令进行编辑,我更喜欢后者,在末尾处 加入两行命令:
gedit ~/.bashrc export PATH=/usr/local/cuda/bin:$PATH export LD_LIBRARY_PATH=/usr/local/cuda/lib:$LD_LIBRARY_PATH
如果是64位系统的话需要将上一行的lib改为lib64,然后保存。
(2)另一种方法是直接加在/etc/ld.so.conf.d/ 里面:
sudo echo "/usr/local/cuda/lib64" >> /etc/ld.so.conf.d/cuda-40.conf sudo ldconfig
如果是64位系统同样将lib改为lib64
再设定PATH:
echo 'export PATH=$PATH:/usr/local/cuda/bin' >> ~/.bashrc
后面还有配置gcc和g++的,直接看参考网址
参考网址:http://www.cnblogs.com/giraffe/archive/2011/10/21/CUDA-Ubuntu-Install.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。