blob: a335214eacea1694aa1b87df22d9f5d71245981d [file] [log] [blame]
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
nvidia_run_file=""
## @description get nvidia version
## @audience public
## @stability stable
function get_nvidia_version()
{
local nvidia_detect_info
nvidia_detect_info=$("nvidia-detect" -v)
echo $nvidia_detect_info | sed "s/^.*This device requires the current \([0-9.]*\).*/\1/"
}
## @description download nvidia detect
## @audience public
## @stability stable
function download_nvidia_detect_rpm()
{
if [[ -f ${DOWNLOAD_DIR}/nvidia/nvidia-detect.rpm ]]; then
echo "NVIDIA nvidia-detect.rpm already exists ${DOWNLOAD_DIR}/nvidia/ directory."
echo "===== Please make sure the ${DOWNLOAD_DIR}/nvidia/nvidia-detect.rpm file is complete and can be used normally. ====="
elif [[ -n "$DOWNLOAD_HTTP" ]]; then
# Get nvidia-detect.rpm from download server
echo "Download ${MY_NVIDIA_DETECT_URL} ..."
wget -P "${DOWNLOAD_DIR}/nvidia/" "${DOWNLOAD_HTTP}/downloads/nvidia/nvidia-detect.rpm"
if [[ $? -ne 0 ]]; then
echo -e "\\033[32mshell:> Failed to download nvidia-detect.rpm of nvidia
detect from ${DOWNLOAD_HTTP}/downloads/nvidia/nvidia-detect.rpm \\033[0m"
fi
else
nvidiaDetectRpm=`curl --silent ${NVIDIA_DETECT_URL} | grep nvidia-detect- | sed 's/.*\(nvidia-detect-.*.rpm\).*/\1/g' | head -n 1`
# Trim the last slash of DOCKER_REPO
NVIDIA_DETECT_URL_TRIMED="$(echo -e "${NVIDIA_DETECT_URL}" | sed -e 's/\/*$//')"
wget --output-document="${DOWNLOAD_DIR}/nvidia/nvidia-detect.rpm" "${NVIDIA_DETECT_URL_TRIMED}/${nvidiaDetectRpm}"
if [[ $? -ne 0 ]]; then
echo -e "\\033[32mshell:> Failed to download nvidia-detect.rpm of nvidia
detect from ${NVIDIA_DETECT_URL}/${nvidiaDetectRpm} \\033[0m"
fi
fi
}
## @description download nvidia driver
## @audience public
## @stability stable
function download_nvidia_driver()
{
download_nvidia_detect_rpm
# Install nvidia detect if needed
if ! [ -x "$(command -v nvidia-detect)" ]; then
echo 'Installing nvidia-detect ...'
sudo rpm -ivh "${DOWNLOAD_DIR}/nvidia/nvidia-detect.rpm"
fi
echo "Check the gpu cards with nvidia-detect ..."
local nvidiaVersion
if [[ ${IS_DOWNLOAD_SERVER} && -n ${NVIDIA_DRIVER_VERSION} ]]; then
nvidiaVersion=${NVIDIA_DRIVER_VERSION}
else
nvidiaVersion=$(get_nvidia_version)
fi
echo -e "detect nvidia version is \\033[31m${nvidiaVersion}\\033[0m"
# download NVIDIA driver
if [[ "$nvidiaVersion" = "" ]]; then
echo -e "\\033[31mERROR: No graphics card device detected.\\033[0m"
return 1
else
nvidia_run_file="NVIDIA-Linux-x86_64-${nvidiaVersion}.run"
# submarine http server
if [[ -n "$DOWNLOAD_HTTP" ]]; then
MY_NVIDIA_DRIVER_RUN_URL="${DOWNLOAD_HTTP}/downloads/nvidia/${nvidia_run_file}"
else
# http://us.download.nvidia.com/XFree86/Linux-x86_64/390.87/NVIDIA-Linux-x86_64-390.87.run
MY_NVIDIA_DRIVER_RUN_URL="http://us.download.nvidia.com/XFree86/Linux-x86_64/${nvidiaVersion}/${nvidia_run_file}"
fi
if [[ -f ${DOWNLOAD_DIR}/nvidia/${nvidia_run_file} ]]; then
echo "NVIDIA driver files already exist in the ${DOWNLOAD_DIR}/nvidia/${nvidia_run_file} directory."
echo "===== Please make sure the ${DOWNLOAD_DIR}/nvidia/nvidia/${nvidia_run_file} file is complete and can be used normally. ====="
else
echo "Download the NVIDIA driver from the ${MY_NVIDIA_DRIVER_RUN_URL}"
wget -P "${DOWNLOAD_DIR}/nvidia/" "${MY_NVIDIA_DRIVER_RUN_URL}"
fi
fi
}
## @description install nvidia
## @audience public
## @stability stable
function install_nvidia()
{
download_nvidia_driver
# Confirm that the system disables nouveau
local disable_nouveau_info
disable_nouveau_info=$(lsmod | grep nouveau)
if [[ "$disable_nouveau_info" = "" ]]; then
echo "===== Start installing the NVIDIA driver ====="
echo -e "Some options during the installation
Would you like to register the kernel module sources with DKMS?
This will allow DKMS to automatically build a new module, if you install a different kernel later.
\\033[33m[Yes]\\033[0m
Install NVIDIA's 32-bit compatibility libraries \\033[33m[Yes]\\033[0m
centos Install NVIDIA's 32-bit compatibility libraries
\\033[33m[Yes]\\033[0m
Would you like to run the nvidia-xconfig utility to automatically update your X configuration file...
\\033[33m[No]\\033[0m"
sleep 2
sh "${DOWNLOAD_DIR}/nvidia/${nvidia_run_file}"
else
echo -e "ERROR: Nouveau is not disabled"
return 1
fi
echo -e "\\033[32m===== execute nvidia-smi. You should be able to see the list of graphics cards =====\\033[0m"
sleep 1
nvidia-smi
}
## @description uninstall nvidia
## @audience public
## @stability stable
function uninstall_nvidia()
{
if [ -x "$(command -v nvidia-detect)" ]; then
sudo yum remove nvidia-detect
echo "Succeeded to remove nvidia-detect"
fi
if [ ! -f "/usr/bin/nvidia-uninstall" ]; then
echo -e "\\033[31mERROR: /usr/bin/nvidia-uninstall file is not exist!\\033[0m"
return 1
fi
echo -e "execute /usr/bin/nvidia-uninstall"
sudo /usr/bin/nvidia-uninstall
}