Ubuntu 24.04 black screen / input freeze with RTX 5060 Ti – driver 580.119.02

System Information

  • GPU: Zotac GeForce RTX 5060 Ti Twin Edge

  • OS: Ubuntu 24.04 LTS

  • Kernel: 6.8.0-88-generic

  • Driver tested: NVIDIA-Linux-x86_64-580.119.02 (.run installer)

  • Display Manager tested: GDM3, LightDM

  • CPU Graphics: Intel iGPU (used as fallback)


Problem Description

On Ubuntu 24.04 with kernel 6.8.0-88, the NVIDIA proprietary driver fails to initialize correctly when the RTX 5060 Ti is powered and present on the PCIe bus.

When the GPU is powered ON, the system becomes unusable during graphical initialization:

  • Black screen during boot, or

  • Login screen appears but keyboard and mouse stop responding

  • Display manager fails to present a usable session

  • System only remains accessible via GRUB recovery / root shell

When the GPU is powered OFF (or PCIe power disconnected), Ubuntu boots and operates normally using the Intel iGPU.

This behavior suggests a driver initialization or kernel-module binding issue specific to this GPU / kernel / driver combination.


Reproduction Steps

Case 1: GPU Powered ON

  1. Power on system with RTX 5060 Ti connected

  2. Boot Ubuntu 24.04 normally

  3. System reaches black screen or frozen login screen

  4. Keyboard and mouse become unresponsive

  5. Only recovery-mode root shell is usable

Case 2: GPU Powered OFF

  1. Disconnect PCIe power from GPU

  2. Boot Ubuntu 24.04

  3. System boots normally into desktop

  4. Input devices work correctly


Driver Installation Details

  • Driver installed using the official NVIDIA .run installer:

    
    
  • NVIDIA-Linux-x86_64-580.119.02.run
    
    
  • Installation completed without fatal installer errors

  • Driver installation was also tested without kernel modules for diagnostics

Installer log is attached.


Bug Reports Collected (Per NVIDIA Guidelines)

Following NVIDIA’s instructions, bug reports were generated in both states:

  1. GPU powered OFF

    • File: nvidia-bug-report.log.gz
  2. GPU powered ON

    • File: nvidia-bug-report-GPU-On.log.gz

    • Generated from GRUB recovery root shell because normal boot was not possible

    • Report shows:

      
      
    • Detected driver type: Running RM Driver on GPUs
      
      
  3. Installer log

    • File: nvidia-installer.log

All three files are attached.

Expected Result

  • NVIDIA driver should initialize correctly

  • System should reach graphical login

  • Keyboard and mouse should remain functional

  • RTX 5060 Ti should be usable under Ubuntu 24.04


Actual Result

  • System freezes or shows black screen when GPU is powered

  • Input devices stop responding

  • Desktop is unusable

  • GPU works only when physically unpowered


Request for Guidance

Could you please clarify:

  1. Whether driver 580.119.02 fully supports RTX 5060 Ti on kernel 6.8

  2. If this is a known issue with Ubuntu 24.04 or kernel 6.8

  3. Whether a newer kernel (6.9/6.10) or updated driver is required

  4. If additional diagnostics (dmesg, Xorg logs, ACPI dumps) are needed

I am happy to provide any additional information required.


Attached Files

  • nvidia-bug-report.log.gz

  • nvidia-bug-report-GPU-On.log.gz

  • nvidia-installer.log

nvidia-bug-report.log.gz (787.8 KB)

nvidia-bug-report-GPU-on.log.gz (771.9 KB)

nvidia-installer.log (4.9 KB)


1 Like

Hello,

I don’t know if this will work for you, but I had the same problem: NVIDIA 5060 Ti 16gb with 580.95.05-open driver on Ubuntu 24.04 kernel 6.14 with a quite old motherboard (PCIe v3).

I tried many things, but what finally resolved the black/blank screen and got the graphics working was to add the following boot parameters:

pci=nommconf nvidia-drm.modeset=1

SOLVED: RTX 5060 Ti working on Ubuntu 24.04 with kernel 6.17.0-19

Hardware: Lenovo Legion T5 30IAS10, Intel Core Ultra 7 265F, 32GB DDR5, NVIDIA RTX 5060 Ti 8GB

What failed: nvidia-driver-580 and nvidia-driver-590 (both open and proprietary) — black screen on reboot, system unusable.

What worked: nvidia-driver-570-open version 570.211.01 via the graphics-drivers PPA.

Steps:

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt install nvidia-driver-570-open

Editing Grub.

sudo nano /etc/default/grub
```
- Use arrow keys to navigate to the `GRUB_CMDLINE_LINUX_DEFAULT` line
- Edit the line to read:
```
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=realloc nvidia-drm.modeset=1"

Ctrl+O to save, Enter to confirm filename, Ctrl+X to exit

sudo update-grub
sudo reboot

Result: DKMS built cleanly on kernel 6.17.0-19. CUDA 12.8 confirmed. GPU driving display successfully.

Key notes:

  1. Do NOT use the proprietary (non-open) driver. Blackwell architecture requires open kernel modules.
  2. pci=realloc fixes BAR0 memory allocation issues common on RTX 50-series.
  3. Secure Boot was disabled. No MOK enrollment needed.

Lastly.

sudo systemctl disable unattended-upgrades

A routine sudo apt upgrade will try to push a kernel update that might require a fresh DKMS build of the NVIDIA driver.

  1. Boot into Recovery Mode (via the GRUB menu).
  2. Select Network (to enable internet).
  3. Select Root and run sudo apt install --reinstall nvidia-driver-570-open.

This will re-hook the driver to the new kernel and get you back in business. Or take a timeshift timestamp and control your destiny.