View install_nvidia_debian.sh
#!/bin/bash | |
## this script is for Debian\Ubuntu. | |
## Check if root | |
if [ ! $UID = 0 ]; then | |
echo "This script needs super user privileges to run" | |
echo "run it againg using sudo or login as root" | |
exit 1 | |
fi |