美文网首页
Little Tricks 1

Little Tricks 1

作者: 尼诺阳 | 来源:发表于2018-12-13 22:14 被阅读0次

CUDA-Z

A easy tool that collects your graphic card info.


Download Legacy Nvidia Graphic Card Driver

http://www.geforce.cn/drivers


Nvidia Driver & CUDA Uninstall

  1. Unistall Nvidia Driver

Press ctrl + alt + F3, login and execute

 sudo service lightdm stop

or

 sudo service gdm3 stop

to stop the desktop service and use the following command to unistall

sudo /usr/bin/nvidia-uninstall

or you can use

sudo apt-get install autoremove --purge nvidia*
  1. Unistall CUDA

     sudo /usr/local/cuda-9.0/bin/uninstall_cuda-8.0.pl
    

Then delete cuda-9.0 manually.


Ubuntu Shell file

To run .sh file, you can make it into executable by

chomod u+x file.sh

or

sh file.sh

or

  source file.sh

source command executes the shell file under the current terminal process. It keeps all variables defined in this shell file. 'sh' command ( equal to ./file.sh ) runs the shell file within a newly created subprocess which means that all variables defined in this shell file would be deprecated at the end of the subprocess.

相关文章

  • Little Tricks 1

    CUDA-Z A easy tool that collects your graphic card info. ...

  • Little Tricks

    1.合并多个单元格中的内容到一个单元格,你是怎么处理的呢? 先将单元格列宽调整到足够存放所有字符,然后在开始选项卡...

  • Little Tricks on Excel

    今天遇到一个研发GG向我一个渣渣求救,原因是一行数据里的数字前面有带单引号,如图所示: 当然,图没有那么丑,单引号...

  • Little tricks 电话销售如何绕过前台

    本文写作于2017年7月18日 还有一个和客服类似的岗位:前台 销售的原因,自然少不了拜访很多客户,和很多公司,单...

  • 学习CSS的资源(暂记)

    1.Google: 关键词 MDN 2.CSS Tricks(https://css-tricks.com) 3....

  • 斯坦福大学SCI写作课程2 Cutting clutter

    1. Cut the clutter, more tricks (1) Eliminate negatives (...

  • A Little Flipped Love

    1. A Little Love A little love, little Kiss A little hug,...

  • How's tricks?

    老外见面就问How's tricks什么意思?耍什么把戏?才不是! NO.1 How's tricks是句问候 ↓...

  • Useful tricks for Ubuntu / Ubunt

    Useful tricks Useful tricks in Linux using and server man...

  • FastText

    论文:Bag of Tricks for Efficient Text Classification 1.Intr...

网友评论

      本文标题:Little Tricks 1

      本文链接:https://www.haomeiwen.com/subject/ecsihqtx.html