🌐
Debian
packages.debian.org › search
Debian -- Package Search Results -- nvidia
experimental (libs): NVIDIA OpenCL ICD Loader library [non-free] 555.58.02-3: amd64 arm64 i386 · bullseye (oldoldstable) (utils): utility to load NVIDIA kernel modules and create device nodes [contrib] 470.182.03-1: amd64 arm64 armhf i386
🌐
Debian
packages.debian.org › sid › nvidia-settings
Debian -- Details of package nvidia-settings in sid
The nvidia-settings utility is a tool for configuring the NVIDIA Linux graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate.
🌐
Reddit
reddit.com › r/linux4noobs › nvidia drivers for debian 12 - step by step
r/linux4noobs on Reddit: NVIDIA Drivers for Debian 12 - Step by Step
December 20, 2023 -

As with all things Linux, your results may vary depending on your hardware setup.

Here's what I did that worked for my situation. If any experts want to weigh in and criticize this approach, feel free to tell me what I could've improved on.

My NVIDIA card is a few years old (GTX 1660), but I got the proprietary driver installed just fine and it's working great with my casual gaming. I'm not playing AAA stuff at max settings or anything, but I haven't run into any issues so far. However, I don't game every single day.

Debian typically includes open-source Nouveau drivers by default, which are fine for basic use but may not provide optimal performance for gaming or other intensive tasks. Before doing any update like this, be sure to create a timeshift of your system so you can easily roll the changes back if your results aren't as expected. Here's how to install the proprietary NVIDIA drivers:

  1. Add Non-Free Repositories: Debian's default repositories don't include proprietary drivers, so you'll need to add the non-free repositories. Edit your /etc/apt/sources.list file and add non-free to the end of each line. For example, a line in your `sources.list` file might look like this:
    deb http://deb.debian.org/debian/ bullseye main contrib non-free

  2. Update Package Lists: After updating your sources.list, run the following command to update your package lists:
    sudo apt update

  3. Install Kernel Headers: The NVIDIA drivers require kernel headers to be installed. You can install them with:
    sudo apt install linux-headers-$(uname -r)

  4. Install NVIDIA Drivers: Install the NVIDIA drivers using the following command:
    sudo apt install nvidia-driver

  5. Reboot Your System: Once the installation is complete, reboot your system to load the drivers:
    sudo reboot

  6. Verify the Installation: After rebooting, you can verify that the NVIDIA drivers are in use with the following command:
    nvidia-smi

  7. Troubleshooting: If you encounter any issues, check the logs for any errors related to NVIDIA. Sometimes, issues can arise due to conflicts with the Nouveau driver, in which case you might need to blacklist the Nouveau driver.

After running nvidia-smi to check my version, the NVIDIA driver version on my machine is 525.147.05, released in October 2023: https://docs.nvidia.com/datacenter/tesla/tesla-release-notes-525-147-05/index.html

(Edited for formatting)

🌐
Debian
wiki.debian.org › NvidiaGraphicsDrivers
NvidiaGraphicsDrivers - Debian Wiki
Note for editors: there's a LOT of confusion among users regarding driver flavors and packaging methods (see the Nvidia forum for countless examples). This section is intended to build a 3x2 matrix mental-model (packaging*flavor), so that users understand their available options and know where to look for further info.
🌐
Ori
docs.ori.co › installing nvidia drivers (debian)
Installing NVIDIA Drivers (Debian) | Radiant AI Cloud
This ensures that your VM can efficiently utilize the underlying hardware for GPU-intensive tasks such as machine learning, deep learning, and high-performance computing. This guide will walk you through the process of installing NVIDIA GPU drivers on your VM. Ensure that your VM instance is available. Verify that you have access to your VM via ssh. Use the Radiant provided ssh command on the VM details page. All the steps are based in the following guide: https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_12_.22Bookworm.22
🌐
thelinuxvault
thelinuxvault.net › blog › installing-nvidia-drivers-all-major-linux-distributions
Installing NVIDIA Drivers on All Major Linux Distributions
Ubuntu: Reinstall the driver with sudo apt reinstall nvidia-driver-XXX. Older GPUs (e.g., GTX 700 series) require legacy drivers: Ubuntu/Debian: Install nvidia-driver-470 (last legacy version).
🌐
NVIDIA
docs.nvidia.com › datacenter › tesla › driver-installation-guide › debian.html
Debian — NVIDIA Driver Installation Guide
More information on the use and scope of these packages can be found in the recent updates section on Version locking packages for Ubuntu / Debian and explained in detail at Version locking.
Find elsewhere
🌐
GitHub
gist.github.com › madtunebk › 905d17a105bf6f6c2881cd133c49ffb2
Full Setup Guide for NVIDIA 550 on Debian 12.md · GitHub
sudo apt install -y vulkan-utils nvidia-cuda-toolkit ... If all these return expected results, your NVIDIA 550 driver is successfully installed on Debian 12!
🌐
Medium
medium.com › codex › install-nvidia-drivers-cuda-on-debian-12-bookworm-nvidia-smi-69d2980247c6
Install Nvidia drivers + CUDA on Debian 12 (bookworm) + nvidia-smi + ollama and Docker | by Levente Csikor | CodeX | Medium
May 24, 2025 - services: ollama: container_name: ollama hostname: ollama image: ollama/ollama:latest restart: unless-stopped # ports: # - "11434:11434" environment: - NVIDIA_VISIBLE_DEVICES=all - NVIDIA_DRIVER_CAPABILITIES=compute,utility - CUDA_VISIBLE_DEVICES=0 deploy: resources: reservations: devices: - driver: nvidia count: all capabilities: [gpu] volumes: #use your own path for permanent storage (e.g., models) - /docker/ollama/data:/root/.ollama runtime: nvidia # command: ollama serve ollama-webui: container_name: ollama-webui hostname: ollama-webui restart: unless-stopped image: ghcr.io/open-webui/open-webui:latest depends_on: - ollama ports: - 3000:8080 volumes: - /docker/ollama/open-webui-data:/app/backend/data environment: - OLLAMA_URL=http://ollama:11434
🌐
Blogger
frikinux.blogspot.com › 2013 › 01 › nvidia-utils-en-debian.html
nvidia-utils en Debian ~ Frikinux
Mayormente en sistemas de 64 bits, a la hora de usar programas con exigencias gráficas en wine necesitaremos las librerias 32 bits del driver de nvidia. Este paquete viene normalmente como lib32-nvidia-utils pero en sistemas Debian este no existe y ...
🌐
Kinetica
docs.kinetica.com › 7.1 › install › nvidia_deb
Install Nvidia Drivers on Debian/Ubuntu | Kinetica Docs
This section will provide instructions on installing Nvidia drivers in a Debian/Ubuntu environment, if the target servers have Nvidia GPUs.
🌐
DEV Community
dev.to › dev-charodeyka › debian-12-nvidia-drivers-18dh
Debian 12: NVIDIA Drivers Installation - DEV Community
April 14, 2025 - The .run file is a self-extracting archive. When executed, it extracts the contents of the archive and runs the contained nvidia-installer utility, which provides an interactive interface to walk you through the installation.
🌐
Linux.org
linux.org › home › forums › general linux forums › distribution specific › debian and derivatives
NVIDIA install guide | Linux.org
February 12, 2024 - In terminal <sudo apt install menu g++-multilib g++-12-multilib autoconf automake libtool flex bison gdb gcc-12-multilib gcc-12-locales nvidia-cuda-mps bzr vulkan-tools build-essential firmware-nvidia-gsp> # note - (Your normal approach when installing packages with apt should be to carefully look through the suggested/recommended packages, look them up on packages.debian.org and determine which ones you may need or want.
🌐
PhoenixNAP
phoenixnap.com › home › kb › sysadmin › how to install nvidia drivers on debian
How to Install NVIDIA Drivers on Debian
December 11, 2025 - Install NVIDIA drivers on Debian 12 (Bookworm) using one of two methods: the official Debian repository or official NVIDIA packages.
🌐
NVIDIA
nvidia.com › en-us › drivers › unix
Unix Drivers | NVIDIA
NVIDIA’s AI factory in the cloud · Explore, test, and deploy AI models and agents
🌐
Debian
wiki.debian.org › NvidiaGraphicsDrivers › Configuration
NvidiaGraphicsDrivers/Configuration - Debian Wiki
Section "Device" Identifier "My GPU" Driver "nvidia" Option "NoLogo" "1" Option "RenderAccel" "1" Option "TripleBuffer" "true" Option "MigrationHeuristic" "greedy" EndSection
🌐
LinuxConfig
linuxconfig.org › home › debian 13 nvidia driver installation
Debian 13 Nvidia Driver Installation - LinuxConfig
September 27, 2025 - The sed command modifies your sources.list file to include both non-free and contrib components alongside the main repository. This is necessary because NVIDIA drivers are proprietary software not included in Debian’s main repository. ... Install Prerequisites and Detect GPU: Install the necessary build tools, kernel headers, and the nvidia-detect utility
🌐
LinuxCapable
linuxcapable.com › home › debian › how to install nvidia drivers on debian 13, 12 and 11
How to Install NVIDIA Drivers on Debian 13, 12 and 11 - LinuxCapable
May 25, 2026 - Run it while the Debian repository is still the candidate source, because the CUDA repository currently publishes a documentation-only nvidia-detect package that does not install the detector script: ... No NVIDIA GPU detected. On systems with NVIDIA hardware, the output lists the GPU and recommends a package such as nvidia-driver or nvidia-legacy-390xx-driver. For most systems, install the main driver with the utilities ...
🌐
Reddit
reddit.com › r/debian › installing nvidia proprietary drivers on debian 13 trixie (stable) with gnome + wayland
r/debian on Reddit: Installing NVIDIA Proprietary Drivers on Debian 13 Trixie (stable) with GNOME + Wayland
September 2, 2025 -

Hi everyone,

I’ve been trying to install the NVIDIA proprietary drivers on my MSI Vector laptop with an NVIDIA 4070 running Debian 13 Trixie (stable) with GNOME and Wayland, but I haven’t had any success. I’ve tried several methods (repositories, backports, manual installation, etc.) and I always end up with the same problem: black screen on reboot.

So far, the only solution has been to undo all changes to be able to log in with the nouveau driver.

Has anyone successfully installed NVIDIA drivers on this setup (Debian 13 + NVIDIA 4070 + GNOME Wayland)?
If you could share the steps you followed (repos, packages, additional configurations), it would be really helpful.

Thanks in advance!