Skip to content

Instantly share code, notes, and snippets.

@mfkasim1
Last active August 3, 2020 09:47
Show Gist options
  • Save mfkasim1/f771716a462315a14bbd4cf1882f137e to your computer and use it in GitHub Desktop.
Save mfkasim1/f771716a462315a14bbd4cf1882f137e to your computer and use it in GitHub Desktop.
NVIDIA GPU checking commands

Check available NVIDIA

lspci | grep -i nvidia

Check NVIDIA driver version

cat /proc/driver/nvidia/version

Display log for drivers

dmesg

List all NVIDIA packages

dpkg -l | grep -i nvidia

Clean up NVIDIA-related packages and drivers

sudo /usr/local/cuda-X.Y/bin/uninstall_cuda_X.Y.pl
sudo /usr/bin/nvidia-uninstall
sudo apt-get --purge remove "*nvidia*" "*cublas*" "cuda*"

Fixing problems

If the display is off because the GPU is not connected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment