From 3a9a1056ed7386f42f143b48ed79526956593274 Mon Sep 17 00:00:00 2001 From: Alessandro Pirastru Date: Sat, 26 Apr 2025 00:28:16 +0200 Subject: [PATCH] Update NVIDIA driver installation warning message - Clarify prerequisites by noting the need for rpmfusion free/nonfree repos. - Improve formatting of the warning box for better readability. - Inform users that the script will install missing repos if necessary. Signed-off-by: Alessandro Pirastru --- docs/static/install.sh | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/docs/static/install.sh b/docs/static/install.sh index 8fc8f465..b36b0781 100755 --- a/docs/static/install.sh +++ b/docs/static/install.sh @@ -395,16 +395,17 @@ install_cuda_driver_yum() { install_fedora_nvidia_kernel_drivers(){ #We want to give the user the choice to install the akmod kernel drivers or not, since it could break some setups - warn "+----------------------------------------------------------------------------------------------+" - warn "| WARNING: |" - warn "| Looks like the NVIDIA Kernel modules are not installed. |" - warn "| |" - warn "| This script can try to install them using akmod-nvidia. |" - warn "| The Akmod installation can sometimes inhibit the reboot command, proceed at your own risk. |" - warn "| |" - warn "| Otherwise you can exit the install script and install them yourself. |" - warn "| NOTE: you will need to reboot after the installation. |" - warn "+----------------------------------------------------------------------------------------------+" + warn "+------------------------------------------------------------------------------------------------+" + warn "| WARNING: |" + warn "| Looks like the NVIDIA Kernel modules are not installed. |" + warn "| |" + warn "| This script can try to install them using akmod-nvidia. |" + warn "| - The script need the rpmfusion free and nonfree repos and will install them if not available. |" + warn "| - The akmod installation can sometimes inhibit the reboot command. |" + warn "| |" + warn "| Otherwise you can exit the install script and install them yourself. |" + warn "| NOTE: you will need to reboot after the installation. |" + warn "+------------------------------------------------------------------------------------------------+" while true; do choice_warn "Do you wish for the script to try and install them? (akmod/exit) ";