Browse Source

Merge pull request #605 from jmorganca/mxyng/install.sh

do not unload nouveau driver
Michael Yang 1 year ago
parent
commit
c577721a43
1 changed files with 3 additions and 3 deletions
  1. 3 3
      scripts/install.sh

+ 3 - 3
scripts/install.sh

@@ -227,12 +227,12 @@ if ! lsmod | grep -q nvidia; then
     fi
 
     if lsmod | grep -q nouveau; then
-        status "Removing nouveau..."
-        $SUDO rmmod nouveau
+        status 'Reboot to complete NVIDIA CUDA driver install.'
+        exit 0
     fi
 
     $SUDO modprobe nvidia
 fi
 
 
-status "NVIDIA GPU installed."
+status "NVIDIA CUDA drivers installed."