1 lien privé
Did you read the Debian Wiki about the NvidiaGraphicsDrivers?
=> https://wiki.debian.org/NvidiaGraphicsD ... llseye-470
First step install Linux Headers and compilation dependencies:
Code: Select all
sudo apt install linux-headers-$(uname -r) build-essential libglvnd-dev pkg-config dkms -y
Second step blacklist the nouveau driver create a blacklist file:
Code: Select all
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
In the file add the following and save the file:
Code: Select all
blacklist nouveau
options nouveau modeset=0
Then regenerate the kernel initramfs:
Code: Select all
sudo update-initramfs -u
Third step install the latest NvidiaGraphicsDrivers:
Code: Select all
sudo apt install -t bullseye-backports firmware-misc-nonfree nvidia-kernel-dkms nvidia-driver nvidia-cuda-toolkit nvidia-cuda-dev nvidia-settings nvidia-smi nvidia-xconfig nvidia-opencl-icd nvidia-opencl-common nvidia-detect -y
Reboot.
To view how version you have installed, just open an terminal and enter follow:
Code: Select all
nvidia-smi