1

I recently did sudo apt upgrade and I think this upgraded my kernel to 5.13.0-27-generic. (I think I also ran sudo apt autoremove.) Since then my graphics have been worse, e.g. windows 'split' when dragging them across the screen, or when scrolling through text, and the cursor is slow to catch up if I have fractional scaling enabled.

I went to check settings in the Nvidia GUI which I'd used previously (I had it set to "High performance mode" or something like that before), but it doesn't come up in Activities. In Software & Updates it is still there with "Continue using a manually installed driver" selected, which I think is the same as before, though underneath it says "No proprietary drivers are in use".

If I run lsmod I don't see anything with Nvidia in the name, but I'm not sure that's relevant; I just read it on another post.

In Synaptic there are hundreds of entries for Nvidia, including ones described as "Linux kernel nvidia modules for version 5.13.0-27".

So where is the GUI and why have the graphics got worse?

Specs: Dell XPS 15 (9510), i7-11800, Nvidia GeForce RTX 3050-Ti

2 Answers2

3

This was answered in the following comment by @Terrance:

Remove the installed NVIDIA drivers and then install the ones from the Ubuntu repos by running sudo apt install nvidia-driver-495.

Nmath
  • 12,664
0

Be sure to have all the necessary kernel headers installed and updated. Otherwise the NVIDIA driver might not be able to create/install the necessary kernel modules.

Especially if you might have installed more than one kernel flavor (generic/lowlatency).

apt-get install linux-headers-generic 
apt-get install linux-headers-lowlatency

If you install just one of them, you might land in hell, once you try to boot the wrong kernel flavor - as I did.

Using these in favor of specific versions that are usually recommended in this case (apt-get install linux-headers-$(uname –r)) has the advantage, that you have to do it just ONCE. Every kernel update thereafter automatically draws the specific headers with it and you should be back to "it just simply works".