Skip to content

Instantly share code, notes, and snippets.

@espoirMur
Last active June 17, 2026 16:14
Show Gist options
  • Select an option

  • Save espoirMur/65cec3d67e0a96e270860c9c276ab9fa to your computer and use it in GitHub Desktop.

Select an option

Save espoirMur/65cec3d67e0a96e270860c9c276ab9fa to your computer and use it in GitHub Desktop.
How I fix this issue NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running

I am no longer abe to monitor this post , I have decided to move everything to my personal blog for better monitoring.

Please click here to access the full post

@paramunix

paramunix commented May 18, 2023

Copy link
Copy Markdown

sudo apt-get purge nvidia-*
sudo apt-get update
sudo apt-get autoremove
and

apt search nvidia ( check latest version)

sudo apt install libnvidia-common-<version>
sudo apt install libnvidia-gl-<version>
sudo apt install nvidia-driver-<version>

@ASG09

ASG09 commented May 19, 2023

Copy link
Copy Markdown

Worked for me (Ubuntu 22.04 on a dell inspiron 5510) after I did the reboot on secure mode on, but with a slight detail: The BIOS Audit Mode for the secure boot must be checked instead of the other (default) mode. If this default mode is checked, the drivers still does not load. After booting up with this config on, the driver is loaded and I could switch back the secure boot off again (maybe I could even leave it with secure boot on).

@ecolss

ecolss commented Sep 24, 2023

Copy link
Copy Markdown

In my case I updated from 20 to 21 ubuntu, installed new nvidia drivers and it didn't work. The solution was to disable secure boot. Thanks lyh458

This is it!!

@ardadi

ardadi commented Jan 25, 2024

Copy link
Copy Markdown

Worked for me (Ubuntu 22.04 on a dell inspiron 5510) after I did the reboot on secure mode on, but with a slight detail: The BIOS Audit Mode for the secure boot must be checked instead of the other (default) mode. If this default mode is checked, the drivers still does not load. After booting up with this config on, the driver is loaded and I could switch back the secure boot off again (maybe I could even leave it with secure boot on).

thanks

@solivehong

Copy link
Copy Markdown

work!

@big-gandalf

Copy link
Copy Markdown

Disabling secure boot from the BIOS settings worked for me

it worked. Thank you !

@Mahaveer2041

Copy link
Copy Markdown

Here is what worked for me ( I use Ubuntu 22.04)

  1. Create a config file to blacklist the Nouveau driver:
    sudo tee /etc/modprobe.d/disable-nouveau.conf <<EOF blacklist nouveau options nouveau modeset=0 EOF
  2. Regenerate the initial RAM filesystem:
    sudo update-initramfs -u
    sudo apt purge 'nvidia-*' sudo apt update sudo ubuntu-drivers devices sudo ubuntu-drivers autoinstall sudo reboot

@kaveenkumar

Copy link
Copy Markdown

thanks! worked for Ubuntu 25.04 and nvidia-driver-570

@jvalladarescea

Copy link
Copy Markdown

Disabling secure boot and nvidia-driver-570 work for me. Thanks!

@stan1ey-shen

Copy link
Copy Markdown

Thanks! Disabling Secure Boot fixed the issue with nvidia-driver-570 on Ubuntu 24.04.

@smehdii

smehdii commented Jul 30, 2025

Copy link
Copy Markdown

Was all about disabling secure boot since unsigned modules can't be loaded with secure boot.

@hannhu

hannhu commented Aug 8, 2025

Copy link
Copy Markdown

it works for me, thank you!

@srisaisubramanyam

Copy link
Copy Markdown

go to device manager -> click on display adapters -> click on nvidia gpu -> enable
This worked for me

ghost commented Oct 23, 2025

Copy link
Copy Markdown

@srisaisubramanyam Can you be a little bit more specific ?

@farid1965

Copy link
Copy Markdown

how i install nvidia driver for 570 with cuda 12.90 supported

ghost commented Oct 27, 2025

Copy link
Copy Markdown

@farid1965 Depends on the OS. If Windows, you can find everything you need on the Download page for Drivers on the official site of Nvidia. If Linux, try getting the one from your distro's package manager. Should be something like (correct me if I'm wrong) nvidia-driver-{driver_version} (at least on Debian).

@rugularox

Copy link
Copy Markdown

Check If the NVIDIA Kernel Module Is Loaded
Open a terminal and run:

bash

lsmod | grep nvidia
If this returns nothing, the kernel module isn’t loaded. That’s your root problem.

source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment