From 2f22928b375cee8fd92b5859c0b0c26f4a92efee Mon Sep 17 00:00:00 2001 From: Seokho Son Date: Tue, 11 Jun 2024 19:26:34 +0900 Subject: [PATCH] Remove reboot from the installCudaDriver.sh --- scripts/usecases/llm/installCudaDriver.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/usecases/llm/installCudaDriver.sh b/scripts/usecases/llm/installCudaDriver.sh index 62af44034..49dbe4797 100644 --- a/scripts/usecases/llm/installCudaDriver.sh +++ b/scripts/usecases/llm/installCudaDriver.sh @@ -57,7 +57,6 @@ echo 'export LD_LIBRARY_PATH=/usr/local/cuda-12.5/lib64${LD_LIBRARY_PATH:+:${LD_ echo "Verifying LD_LIBRARY_PATH..." . ~/.bashrc && echo "$LD_LIBRARY_PATH" -# Reboot the system -echo "Rebooting the system..." -echo "You need to check [nvcc --version] [nvidia-smi] after rebooting" -sudo reboot +# Notify rebooting the system is required +echo "You need to reboot the system to make driver works. [sudo reboot]" +echo "You can verify the setup by using [nvidia-smi] and [nvcc --version] after rebooting"