Not able to change the Nvidia driver in ubuntu 20.04
Sophia Terry
In Additional Drivers under Software & Updates, the NVIDIA driver is stuck on Continue using a manually installed driver, and all other options are greyed out.
I want to set the driver to proprietary driver(nvidia-driver-390), which was originally selected before I changed it to the open source driver, but now it is stuck.
How can I resolve this issue? Should remove all NVIDIA drivers and install them again? If so , how to do it safely in Ubuntu 20.04?
Additional info:
cat /var/log/Xorg.0.logoutput:lspci -k | grep -EA3 'VGA|3D|Display'output:
5 Answers
This problem should be fixed by running
sudo ubuntu-drivers installafter a reboot.
4I encountered myself in a similar situation because of broken packages (Ubuntu complained on launching sudo ubuntu-drivers autoinstall; further in Software & Updates -> Additional Drivers my Nvidia graphics was locked to manual installation). I solved it like this:
- Remove all nvidia packages and make sure nouveau is installed (you need sudo rights):
dpkg -P $(dpkg -l | grep nvidia-driver | awk '{print $2}')
apt autoremove
apt install xserver-xorg-video-nouveau- Reboot
- Reinstall latest nvidia packages (again, sudo rights):
ubuntu-drivers autoinstall 1 Here is my solution for the mouse lag situation. open NVIDIA Settings.
$ nivdia-settingsselect this -> PRIME Profiles - NVIDIA (Performance Mode)
after reboot, your mouse or the animation of Ubuntu is as smooth as it used to be.
I also couldn't update to a newer Nvidia driver because a manual driver was installed, in my case from 470 to 510 driver on an Focal Desktop system of Canonical.
My solution was:
Open a terminal and run the command:
sudo ubuntu-drivers autoinstallThe above will install the newest recommended driver.
Wait until all automatic commands are executed and reboot the system.
The Linux kernel loaded the 510 driver.
Checked Additional Drivers in Software & Updates, which points to Nvidia 510 driver.
The accidentally selected manual driver option was removed.
My issue is that I able to select the NVIDIA driver and after I reboot the computer I checked the info still dont detect the external GPU.
1