3

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.

Pramod
  • 31

1 Answers1

8
  1. 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*"
    
  2. 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. Run sudo apt update to refresh the list of available software.

  3. Reboot with sudo reboot

  4. 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
  • ... and check Secure Boot status. – ChanganAuto Dec 04 '21 at 12:35
  • Thanks Karel for the information. How to check Step 2 about Nvidia PPA. New to Linux so really need help. – Pramod Dec 11 '21 at 13:53
  • The software sources are located in /etc/aptdirectory, 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 the sudoedit /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:10
  • Hi Karel. How would I know if Nvidia PPA is added seeing the sources.list – Pramod Dec 11 '21 at 14:33
  • The line in sources.list might contain a string that says ppa: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:40
  • Thanks Karel. I did the steps you suggested. However, After rebooting I got the error message that the 'System is working without the Video Graphics'. When I check the 'Additional Drivers' Tab, It shows 'Using Nvidia Driver metapackage from nvidia-driver-470 (proprietary,tested). Also I got the following error message when I had run the Nvidia Driver installation command 'sudo ubuntu-drivers autoinstall && sudo reboot' 'WARNING:root:_pkg_get_support nvidia-driver-390: package has invalid Support Legacyheader, cannot determine support level' – Pramod Dec 11 '21 at 15:06
  • Current resolution shows 1024X768. Where am I doing the mistake. – Pramod Dec 11 '21 at 15:08
  • How to check the Secure Boot Status. I entered the BIOS but couldn't find the option. I am using a Gigabyte Motherboard – Pramod Dec 11 '21 at 15:10
  • Gigabyte UEFI Secure Boot status I replied to your other comments by editing my answer. – karel Dec 11 '21 at 15:15
  • Thanks Karel. I checked with sudo mokutil --sb-state and it shows :SecureBoot disabled Platform is in Setup Mode – Pramod Dec 11 '21 at 15:25
  • I will try with your new recommendations and update you soon. – Pramod Dec 11 '21 at 15:25
  • Hi Karel. I tried the steps. But its not working. After rebooting again got the same error 'Your system is currently running without video hardware acceleration'. Additional driver setting shows 'Using Nvidia Driver metapackage from nvidia-driver-470 (proprietary,tested). '. Please help – Pramod Dec 11 '21 at 15:40
  • I checked with sudo mokutil --sb-state and it shows :SecureBoot disabled Platform is in Setup Mode – Pramod Dec 11 '21 at 15:42
  • Try uninstalling the Nvidia packages again and rebooting and then run sudo apt update && sudo apt install nvidia-driver-390 && sudo reboot – karel Dec 11 '21 at 15:52