I have Nvidia GeFore GT710 Graphics Card and facing issues with the driver installation. Though I am getting an option to nvidia-driver-470 tested version to install. Once installation, Graphic Card is not getting initiated and resolution is some 600X. System is only working on Nouveau display driver which is not performing at all and very lag in resolution. Pleas help.
Asked
Active
Viewed 1.3k times
1 Answers
8
Remove all the nvidia packages.
sudo apt update sudo apt upgrade sudo apt autoremove sudo apt-get remove --purge nvidia* sudo apt-get remove --purge "nvidia*"
If you have added an Nvidia PPA to
/etc/apt/sources.list
remove that PPA by prefacing its line in sources.list with a#
to comment it out. Runsudo apt update
to refresh the list of available software.Reboot with
sudo reboot
Run the following command to automatically select and install the Nvidia proprietary graphics driver and reboot.
sudo ubuntu-drivers install && sudo reboot
After you have installed the proprietary Nvidia graphics driver with the above command it may be updated to a more up-to-date proprietary Nvidia graphics driver package by the normal software update activity.

karel
- 114,770
/etc/apt
directory, always in the sources.list file and sometimes also in a file in the/etc/apt/sources.list.d
directory. You can edit sources.list from the terminal with thesudoedit /etc/apt/sources.list
command. The keyboard shortcuts for Write Out and Exit are in the bottom panel of the editor. – karel Dec 11 '21 at 14:10ppa:graphics-drivers/ppa
or if not you can compare it to the standard source.lists file in this answer and then check on the internet about any line in your sources.list that looks like it might be pointing to an alternative software source that you might remember adding to your software sources. – karel Dec 11 '21 at 14:40sudo apt update && sudo apt install nvidia-driver-390 && sudo reboot
– karel Dec 11 '21 at 15:52