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
/usr/src/
folder for the NVIDIA drivers that are installed, you could possibly create adkms.conf
file and turn the driver into a DKMS version. You will also have to make sure thatdkms
is installed.sudo apt install dkms
It is the Dynamic Kernel Module Support application. You can always check the status by runningdkms status
and it will show you the non-kernel drivers installed that are usingdkms
– Terrance Jan 20 '22 at 19:43/usr/src/
NVIDIA folder does exist, you could follow these https://askubuntu.com/questions/1333542/realtek-r8168-driver-compile-errors-on-kernel-5-8-0-50-on-20-04-1-lts/1334101#1334101 instructions that are for a RealTek NIC, but the setup would be the same. – Terrance Jan 20 '22 at 19:43sudo apt install nvidia-driver-495
– Terrance Jan 20 '22 at 19:44