๐ ~1 min read
Table of contents
Symptom & Impact
After driver update, system boots to black screen or blinking cursor with no desktop session.
Environment & Reproduction
Frequently seen when DKMS modules fail against current kernel or secure boot blocks module load.
ubuntu-drivers devices
modinfo nvidia | head
mokutil --sb-state
journalctl -k -b -n 120 --no-pager
Root Cause Analysis
NVIDIA kernel module is not loaded or mismatched, preventing graphical stack initialization.
Quick Triage
Use TTY to inspect loaded modules and display manager status.
lsmod | grep nvidia
systemctl status gdm --no-pager
nvidia-smi
dpkg -l | grep -i nvidia
Step-by-Step Diagnosis
Confirm DKMS build status and inspect boot logs for taint or signature failures.
dkms status
journalctl -k -b | grep -iE 'nvidia|nouveau|secure boot'
cat /var/lib/dkms/*/*/build/make.log | tail -n 80

Solution – Primary Fix
Reinstall recommended driver, rebuild initramfs, and reboot with compatible stack.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo apt purge '^nvidia-.*' -y
sudo ubuntu-drivers autoinstall
sudo update-initramfs -u
sudo reboot

Solution – Alternative Approaches
Temporarily force integrated graphics or disable secure boot module restriction.
sudo prime-select intel
sudo reboot
mokutil --disable-validation
Verification & Acceptance Criteria
Accepted when graphical login works and nvidia-smi reports loaded driver correctly.
nvidia-smi
lsmod | grep nvidia
systemctl is-active gdm
Rollback Plan
Roll back to previous driver branch if new version regresses stability.
apt-cache policy nvidia-driver-550 nvidia-driver-560
sudo apt install nvidia-driver-550 -y
Prevention & Hardening
Pin validated driver branch and test with staging kernels before broad rollout.
sudo apt-mark hold nvidia-driver-560
ubuntu-drivers list
dkms status
Related Errors & Cross-Refs
Related issues include failed to start gdm, nouveau conflicts, and secure boot signed module errors.
Related tutorial: View the step-by-step tutorial for Ubuntu 26.04 LTS.
View all Ubuntu 26.04 LTS tutorials on the Tutorials Hub โ
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Ubuntu NVIDIA driver docs, DKMS references, and secure boot module signing guidance.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today โ we respond within one business day.