Android with root Git for version control Lircd with Raspberry Pi for IR receiver and sender Tips for Windows Depolying your own password management tool -- KeeWeb Depoly your flask app into Heroku Fix shit IE code manually ISBN to Book Category by Scraping DangDang A Generic Makefile for C/C++ Program Configure Raspberry pi Remove watermark with PyPDF2 tips for docker Anaconda+TensorFlow+CUDA Snippets Configure Remote Mathematica Kernel Build your own ngrok server Access Array SSL VPN 使用Rstudio制作html5幻灯片 tips for Mac OS X system Tips for ipython notebook 配置Ubuntu server + Openbox (Obuntu) tips for Vimperator tips for Vim 安装CUDA My First Jekyll Blog rsync常见选项 在Linux中读取Ipod touch的文件 tip for texmacs 在VPS上建站的一些tip Gnuplot绘图札记 Samba系统和autofs自动挂载 Linux中alsamixer声卡无法录音 搭建自己的RSS订阅器——Tiny Tiny RSS Grub2引导安装Ubuntu awk tips 将Ubuntu系统装入U盘 The Great Rtorrent 编译GCC 再这样剁手!!!该死的libgd 使用ulimit进行资源限制 使用SSH代理上IPV6 使用RCurl抓取网页数据 修复Ubuntu Grub记 openbox中的文件关联 在Ubuntu 12.04下编译qtiplot 处理BCM4312网卡驱动纪实 配置我的Ubuntu Server记 Cygwin杂记 Linux 使普通用户具有以超级权限执行脚本 让firefox自定义地处理文件类型 WordPress优秀主题及插件 在phpcloud上搭建wordpress UBUNTU下用pptpd做VPN server ubuntu升级内核过后的一些问题 安装telnet服务 kubuntu札记 64位kubuntu札记 统计软件R Virtualbox stardict星际译王 Ubuntu重装windows系统后的grub引导修复 SSH服务及花生壳域名解析 采用cbp2make工具由code::blocks工程创建makefile文件 UBUNTU 札记

安装CUDA

2015年08月11日

安装CUDA

本人为UBUNTU 12.04 64位 + NVIDIA GTS 450

  1. 安装驱动

    首先,去官网下载nvidia的驱动,若已经安装了闭源驱动的,需要先卸载,注意卸载之前先备份xorg配置文件,以防止官网驱动无法正确识别屏幕分辨率。

     sudo cp /etc/X11/xorg.conf ~/
    

    然后,重启计算机,不要进入图形界面,直接CTRL+ALT+F1进入命令行,输入以下命令以关闭X服务器。

     sudo /etc/init.d/lightdm stop
    

    最后,安装nvidia驱动,一路选yes回车就行

     chmod +x ~/NVIDIA-Linux-x86_64-310.19.run
     sudo ~/NVIDIA-Linux-x86_64-310.19.run
    
  2. 安装CUDA Toolkit与Samples

    首先去官网下载CUDA5.0 安装包,驱动已经安装过了,安装时驱动一项选no,其他两个选yes,可以设置安装路径

     chmod +x ~/cuda_5.0.35_linux_64_ubuntu11.10-1.run
     sudo ~/cuda_5.0.35_linux_64_ubuntu11.10-1.run
    

    注意,安装的时候可能出现缺少链接库libglut.so,先apt安装,然后把库链接到/usr/lib/目录下

     sudo apt-get install freeglut3-dev
     sudo ln -s /usr/lib/x86_64-linux-gnu/libglut.so /usr/lib/libglut.so
    

    安装完成后,有下面提示

     Toolkit:  Installed in /usr/local/cuda-5.0
     Samples:  Installed in /usr/local/cuda-5.0/samples (pristine) and /home/nick/NVIDIA_CUDA-5.0_Samples (writable)
    
     * Please make sure your PATH includes /usr/local/cuda-5.0/bin
     * Please make sure your LD_LIBRARY_PATH
     *   for 32-bit Linux distributions includes /usr/local/cuda-5.0/lib
     *   for 64-bit Linux distributions includes /usr/local/cuda-5.0/lib64:/lib
     * OR
     *   for 32-bit Linux distributions add /usr/local/cuda-5.0/lib
     *   for 64-bit Linux distributions add /usr/local/cuda-5.0/lib64 and /lib
     * to /etc/ld.so.conf and run ldconfig as root
    
     * To uninstall CUDA, remove the CUDA files in /usr/local/cuda-5.0
    

    这提示需要将相关路径添加到环境变量,以及给出了卸载CUDA的方法。

     echo "#CUDA
         export PATH=$PATH:/usr/local/cuda-5.0/bin/
         export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda-5.0/lib64:/lib" >> ~/.bashrc
    

    安装完成后可以首先编译一下测试代码

     cd ~/NVIDIA_CUDA-5.0_Samples/
     make
    

    若遇到缺少的包,可以安装上,比如我的提示”cannot find -lXmu”,意思是没有找到开发库Xmu,这个时候需要安装对应的库,一般的命名规则是libxxx-dev

     sudo apt-get install libxmu-dev