From f0accf61027ba19b59956e3901723c066dad322a Mon Sep 17 00:00:00 2001 From: AlexanderOF <58230188+AlexanderOFGR@users.noreply.github.com> Date: Wed, 15 Jan 2025 16:44:10 +0000 Subject: [PATCH] Change NVIDIA Download Server to US download.nvidia.com does not provide downloads for drivers and downloading the driver fails. The US Server works perfectly --- overlay/etc/cont-init.d/60-configure_gpu_driver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/etc/cont-init.d/60-configure_gpu_driver.sh b/overlay/etc/cont-init.d/60-configure_gpu_driver.sh index b579c14..42a0a1e 100644 --- a/overlay/etc/cont-init.d/60-configure_gpu_driver.sh +++ b/overlay/etc/cont-init.d/60-configure_gpu_driver.sh @@ -38,7 +38,7 @@ function download_driver { if [[ ! -f "${USER_HOME:?}/Downloads/NVIDIA_${nvidia_host_driver_version:?}.run" ]]; then print_step_header "Downloading driver v${nvidia_host_driver_version:?}" - driver_url="http://download.nvidia.com/XFree86/Linux-x86_64/${nvidia_host_driver_version:?}/NVIDIA-Linux-x86_64-${nvidia_host_driver_version:?}.run" + driver_url="http://us.download.nvidia.com/XFree86/Linux-x86_64/${nvidia_host_driver_version:?}/NVIDIA-Linux-x86_64-${nvidia_host_driver_version:?}.run" if wget --spider --quiet "${driver_url:?}"; then wget -q --show-progress --progress=bar:force:noscroll \ -O /tmp/NVIDIA.run \