Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| wiki:gaming:nvidia_driver_linux [2025/01/17 14:23] – removed - external edit (Unknown date) 127.0.0.1 | wiki:gaming:nvidia_driver_linux [2025/01/17 14:23] (current) – ↷ Page moved from wiki:linux:gaming:nvidia_driver_linux to wiki:gaming:nvidia_driver_linux Greg | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Installing the NVIDIA Driver on Linux ====== | ||
| + | ===== Ubuntu/ | ||
| + | |||
| + | The Driver Manager application should handle this for you pretty easily. Just select the latest/ | ||
| + | |||
| + | **Note:** In my experience (as of January 2025) the partially open-source '' | ||
| + | |||
| + | ===== Debian ===== | ||
| + | |||
| + | Enable the non-free and non-free-firmware sections in your base Debian repos in ''/ | ||
| + | |||
| + | < | ||
| + | deb http:// | ||
| + | deb-src http:// | ||
| + | |||
| + | deb http:// | ||
| + | deb-src http:// | ||
| + | |||
| + | # trixie-updates, | ||
| + | # see https:// | ||
| + | deb http:// | ||
| + | deb-src http:// | ||
| + | </ | ||
| + | |||
| + | Update your apt sources, then install the Linux kernel headers for your architecture: | ||
| + | |||
| + | < | ||
| + | sudo apt update | ||
| + | sudo apt install -y firmware-misc-nonfree linux-headers-amd64 # change this based on your architecture | ||
| + | </ | ||
| + | |||
| + | Install the NVIDIA driver w/ DKMS: | ||
| + | |||
| + | < | ||
| + | sudo apt install -y nvidia-kernel-dkms nvidia-driver | ||
| + | </ | ||