Skip to content

Instantly share code, notes, and snippets.

@eladc
eladc / install_nvidia_debian.sh
Last active June 12, 2016 07:44 — forked from aont/download_nvidia_driver.sh
Download and install Latest NVIDIA driver on Debian based OS
#!/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