阿里ECS GPU机型如何安装驱动(系统:CentOS7.3 GPU:Nvidia P100)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阿里ECS GPU机型如何安装驱动(系统:CentOS7.3 GPU:Nvidia P100)相关的知识,希望对你有一定的参考价值。

一、配置DNS以及yum
1、配置DNS

[[email protected] ~]# vim /etc/resolv.conf 
nameserver 223.5.5.5
nameserver 114.114.114.114
options timeout:2 attempts:3 rotate single-request-reopen
说明:我这里配置了两个外部DNS 223.5.5.5以及114.114.114.114
[[email protected] ~]# chattr +i /etc/reslov.conf

2、配置yum

[[email protected] ~]# cd /etc/yum.repos.d/
[[email protected] yum.repos.d]# rm -rf ./*
[[email protected] yum.repos.d]# mv /etc/yum.repos.d/* /tmp
[[email protected] yum.repos.d]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[[email protected] yum.repos.d]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
[[email protected] yum.repos.d]# wget https://us.download.nvidia.cn/tesla/418.67/nvidia-diag-driver-local-repo-rhel7-418.67-1.0-1.x86_64.rpm
[[email protected] yum.repos.d]# yum install nvidia-diag-driver-local-repo-rhel7-418.67-1.0-1.x86_64.rpm -y
[[email protected] yum.repos.d]# mv nvidia-diag-driver-local-repo-rhel7-418.67-1.0-1.x86_64.rpm /tmp/

二、下载驱动包

1、下载P100/P4驱动:

[[email protected] ~]# wget http://us.download.nvidia.com/tesla/396.44/NVIDIA-Linux-x86_64-396.44.run

2、下载内核开发包:

[[email protected] ~]# wget https://buildlogs.centos.org/c7.1611.u/kernel/20170620132051/3.10.0-514.21.2.el7.x86_64/kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm

3、下载cuda包:(如果使用yum来装cuda-drivers,这一步也可以忽略)

[[email protected] ~]# wget https://developer.nvidia.com/compute/cuda/9.1/Prod/local_installers/cuda_9.1.85_387.26_linux

三、配置信息

下载并安装kernel对应版本的kernel-devel和kernel-header包

[[email protected] ~]# rpm -ivh kernel-devel-3.10.0-514.21.2.el7.x86_64.rpm 
Preparing...                          ################################# [100%]
Updating / installing...
   1:kernel-devel-3.10.0-514.21.2.el7 ################################# [100%]
[[email protected] ~]# sudo rpm -qa | grep $(uname -r)
kernel-headers-3.10.0-514.21.2.el7.x86_64
kernel-3.10.0-514.21.2.el7.x86_64
kernel-devel-3.10.0-514.21.2.el7.x86_64

说明:kernel-devel和kernel版本不一致会导致在安装driver rpm过程中driver编译出错。您可以在实例里运行rpm –qa | grep kernel检测版本是否一致。确认版本后,再重新安装驱动。

[[email protected] ~]# sh NVIDIA-Linux-x86_64-396.44.run
按照引导一路下一步:

验证下是否安装成功:

[[email protected] ~]# nvidia-smi 
Sat Jun 22 18:39:14 2019       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 396.44                 Driver Version: 396.44                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  Tesla P100-PCIE...  Off  | 00000000:00:08.0 Off |                    0 |
| N/A   33C    P0    27W / 250W |      0MiB / 16280MiB |      4%      Default |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

到此驱动已经安装完成。

以上是关于阿里ECS GPU机型如何安装驱动(系统:CentOS7.3 GPU:Nvidia P100)的主要内容,如果未能解决你的问题,请参考以下文章

在阿里云上创建带gpu的ecs实例

阿里云ECS如何安装宝塔面板

配置 Docker 使用 GPU

如何选择阿里云云服务器ECS操作系统

阿里云ECS云服务器基于docker安装zookeeper并且操作

阿里云CentOS部署小笔记