空白机器安装CUDA NVIDIA显卡驱动

系统:centos 7.6
显卡 GTX 2080 Ti
1.NVIDIA
使用网络安装rpm

sudo wget http://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-repo-rhel7-10.1.168-1.x86_64.rpm
 sudo rpm -i cuda-repo-rhel7-10.1.168-1.x86_64.rpm
warning: cuda-repo-rhel7-10.1.168-1.x86_64.rpm: Header V3 RSA/SHA512 Signature, key ID 7fa2af80: NOKEY

失败了,换一种方法

sudo wget https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.168_418.67_linux.run

下载完成之后安装官网指示

Run `sudo sh cuda_10.1.168_418.67_linux.run`
Follow the command-line prompts

就会出现下面的界面

------------------------------------------------------------------------------+
|  End User License Agreement                                                  |
|  --------------------------                                                  |
|                                                                              |
|  NVIDIA Software License Agreement and CUDA Supplement to                    |
|  Software License Agreement.                                                 |
|                                                                              |
|                                                                              |
|  Preface                                                                     |
|  -------                                                                     |
|                                                                              |
|  The Software License Agreement in Chapter 1 and the Supplement              |
|  in Chapter 2 contain license terms and conditions that govern               |
|  the use of NVIDIA software. By accepting this agreement, you                |
|  agree to comply with all the terms and conditions applicable                |
|  to the product(s) included herein.                                          |
|                                                                              |
|                                                                              |
|  NVIDIA Driver                                                               |
|                                                                              |
|                                                                              |
|------------------------------------------------------------------------------|
| Do you accept the above EULA? (accept/decline/quit):                         |
| accept                                                                       |
+------------------------------------------------------------------------------+
+------------------------------------------------------------------------------+
| Options                                                                      |
|   Library install path (Blank for system default)                            |
|   Done                                                                       |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
| Up/Down: Move | Left/Right: Expand | 'Enter': Select | 'A': Advanced options |
+------------------------------------------------------------------------------+
+------------------------------------------------------------------------------+
| CUDA Installer                                                               |
| - [X] Driver                                                                 |
|      [X] 418.67                                                              |
| - [X] CUDA Toolkit 10.1                                                      |
|    + [X] CUDA Tools 10.1                                                     |
|    + [X] CUDA Libraries 10.1                                                 |
|    + [X] CUDA Compiler 10.1                                                  |
|      [X] CUDA Misc Headers 10.1                                              |
|   [X] CUDA Samples 10.1                                                      |
|   [X] CUDA Demo Suite 10.1                                                   |
|   [X] CUDA Documentation 10.1                                                |
|   Options                                                                    |
|   Install                                                                    |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
|                                                                              |
| Up/Down: Move | Left/Right: Expand | 'Enter': Select | 'A': Advanced options |
+------------------------------------------------------------------------------+

此时安装又报错了

 Installation failed. See log at /var/log/cuda-installer.log for details.
查看细节信息

[INFO]: ERROR: The Nouveau kernel driver is currently in use by your system.  This driver is incompatible with the NVIDIA driver, and must be disabled before proceeding.  Please consult the NVIDIA driver README and your Linux distribution's documentation for details on how to correctly disable the Nouveau kernel driver.

[INFO]: 

[INFO]: 

[INFO]: ERROR: Installation has failed.  Please see the file '/var/log/nvidia-installer.log' for details.  You may find suggestions on fixing installation problems in the README available on the Linux driver download page at www.nvidia.com.

尝试解决

vim /etc/modprobe.d/blacklist-nouveau.conf  
内部信息
blacklist nouveau
options nouveau modeset=0
接着执行
sudo update-initramfs -u
sudo: update-initramfs: command not found
没有这个命令
换一个
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
完了之后重启
sudo reboot

等待服务器重启之后,重新执行上面的命令。
又报了同样的错误,看来The Nouveau kernel driver驱动没有禁用成功,我再去查查怎么禁用。
又找个一个方法,试一下
使用命令查看nouveau 驱动状态

lsmod | grep nouveau
nouveau              1871872  0 
video                  45056  1 nouveau
mxm_wmi                16384  1 nouveau
i2c_algo_bit           16384  3 igb,mgag200,nouveau
drm_kms_helper        172032  2 mgag200,nouveau
ttm                   102400  2 mgag200,nouveau
drm                   475136  5 drm_kms_helper,mgag200,ttm,nouveau
wmi                    28672  2 mxm_wmi,nouveau

把之前的黑名单更名

sudo mv  /etc/modprobe.d/blacklist-nouveau.conf /etc/modprobe.d/blacklist.conf
里面写的改成
blacklist nouveau

下一步备份

sudo mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak

重建

sudo dracut -v /boot/initramfs-$(uname -r).img $(uname -r)

重启服务器

此时再次查看 是否禁用成功了

lsmod | grep nouveau  

没有任何输出,应该是成功了
再次执行

sudo sh cuda_10.1.168_418.67_linux.run

终于成功了

===========
= Summary =
===========

Driver:   Installed
Toolkit:  Installed in /usr/local/cuda-10.1/
Samples:  Installed in /home/hexialong/, but missing recommended libraries

Please make sure that
 -   PATH includes /usr/local/cuda-10.1/bin
 -   LD_LIBRARY_PATH includes /usr/local/cuda-10.1/lib64, or, add /usr/local/cuda-10.1/lib64 to /etc/ld.so.conf and run ldconfig as root

To uninstall the CUDA Toolkit, run cuda-uninstaller in /usr/local/cuda-10.1/bin
To uninstall the NVIDIA Driver, run nvidia-uninstall

Please see CUDA_Installation_Guide_Linux.pdf in /usr/local/cuda-10.1/doc/pdf for detailed information on setting up CUDA.
Logfile is /var/log/cuda-installer.log

接下来 修改环境变量

vim ~/.bash_profile 
写入
export PATH=/usr/local/cuda-10.1/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda-10.1/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
export CUDA_HOME=/usr/local/cuda-10.1

执行下面语句使其生效

source ~/.bash_profile

看一下

 nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2019 NVIDIA Corporation
Built on Wed_Apr_24_19:10:27_PDT_2019
Cuda compilation tools, release 10.1, V10.1.168

此时已经可以看到NVIDIA驱动信息了,CUDA安装完成。
接下来 就安装anaconda了。
可以参看另外一篇文章了。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 218,204评论 6 506
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,091评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 164,548评论 0 354
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,657评论 1 293
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,689评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,554评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,302评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,216评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,661评论 1 314
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,851评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,977评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,697评论 5 347
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,306评论 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,898评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,019评论 1 270
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,138评论 3 370
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,927评论 2 355

推荐阅读更多精彩内容