azurehpc/scripts/cuda_drivers.sh

16 строки
481 B
Bash
Исходник Обычный вид История

2019-09-18 18:00:12 +03:00
#!/bin/bash
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum history new
2019-09-18 18:00:12 +03:00
RELEASE=$(cat /etc/redhat-release | cut -d' ' -f4)
echo $RELEASE
2019-11-08 20:37:50 +03:00
yum install -y --disablerepo=openlogic --releasever=$RELEASE dkms
2019-09-18 18:00:12 +03:00
CUDA_REPO_PKG=cuda-repo-rhel7-10.1.243-1.x86_64.rpm
wget -q http://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/${CUDA_REPO_PKG}
rpm -ivh ${CUDA_REPO_PKG}
rm -f ${CUDA_REPO_PKG}
yum history new
2019-09-23 11:01:37 +03:00
yum install -y cuda-drivers