Affected versions: Ubuntu 26.04 LTS

๐Ÿ“– ~1 min read

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution – Primary Fix
  7. Solution – Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

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
Illustrative mockup for ubuntu-26-04-lts โ€” terminal_or_shell
Diagnostic output for graphics/nvidia-black-screen โ€” Illustrative mockup โ€” Progressive Robot

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
Illustrative mockup for ubuntu-26-04-lts โ€” log_or_console
Resolution output for graphics/nvidia-black-screen โ€” Illustrative mockup โ€” Progressive Robot

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 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.