1

I have a 22.04 machine with an old-ish Nvidia GPU which worked perfectly until today, when I got a message that updates were available, and I chose to install them. Installation concluded successfully, and I got a message that a reboot was required. I clicked "Reboot now", and it rebooted. But after the reboot, the graphical desktop didn't load - all I had was a small cursor flashing in the top left corner.

The text terminals are available, though, but only at very low resolution. I can log in, and I have internet access. Lots of stuff about gdm-x-session in /var/log/syslog, but I'm not really into the nitty-gritties surrounding Ubuntu - I mainly just use it. So I'm at a loss - how to go about troubleshooting this?

For the record, I've now tried rebooting three times - same result.

OZ1SEJ
  • 1,323

3 Answers3

2

If you did download and install the drivers manually, you can install them properly by running

sudo ubuntu-drivers autoinstall

so that they will update automatically when there's a kernel update.

mchid
  • 44,904
  • 8
  • 102
  • 162
1

A bit more googling...

  • It's a conflict between the 6.5 kernel and the nvidia-390 driver

  • To get nvidia drivers working you need to downgrade the kernel to the 6.2 series.

  • At the grub menu boot into a 6.2 kernel. This is usually done by holding shift at boot and then picking advanced options to pick a different kernel. You usually have at least the previous kernel. I couldn't get the menu to show so I had to disable hiding the menu and set a 10 second delay before the default option was automatically loaded. (Grub menu at boot time... "holding shift" not working)

  • When you are logged in with the 6.2 kernel you can remove the 6.5 kernel. See How do I remove newest kernel?

For me this was:

sudo apt purge linux-image-6.5.0-14-generic
sudo apt purge linux-headers-6.5.0-14-generic 

After a restart I could install nvidia drivers again :)

0

same thing here with a Nvidia Quadro 2000.

I "fixed" by removing the nvidia drivers. It's not my primary machine so I could afford to be aggressive as my alternative would have been a full re-install.

sudo apt remove --purge nvidia-*
sudo shutdown -r 0

On restart I had a working desktop. No nvidia drivers, but I'll take a working desktop over a potentially faster non-working desktop.