28 lines
843 B
Bash
28 lines
843 B
Bash
#!/bin/bash
|
|
|
|
VERSION="450.80.02"
|
|
FILENAME="NVIDIA-Linux-x86_64-${VERSION}.run"
|
|
URL="https://us.download.nvidia.com/XFree86/Linux-x86_64/${VERSION}/${FILENAME}"
|
|
DRIVER_LOCATION="/opt/nvidia/${FILENAME}"
|
|
PATCH_LOCATION="${DOWNLOAD_PATH}/nvidia-patch/patch.sh"
|
|
|
|
# i want to see if we can see the version with nvidia-smi with awk and compare so we aren't installing every reboot and only when needed
|
|
|
|
# Check and install the nvidia driver
|
|
if [ ! -f "${DRIVER_LOCATION}"]; then
|
|
# download as file is misisng
|
|
wget -P $(dirname ${DRIVER_LOCATION}) ${URL}
|
|
fi
|
|
# ensure the driver can run
|
|
chmod +x ${DRIVER_LOCATION}
|
|
# install the driver silently
|
|
${DRIVER_LOCATION} -s
|
|
|
|
# After install Patch the driver
|
|
cd $(dirname ${PATCH_LOCATION})
|
|
# pull latest fit
|
|
git pull
|
|
# ensure patch can run
|
|
chmod +x ${PATCH_LOCATION}
|
|
# run the patch
|
|
${PATCH_LOCATION} |