2

I'm attempting to install the proprietary Nvidia drivers for my card:

$ lspci | grep VGA               
01:00.0 VGA compatible controller: NVIDIA Corporation G96 [GeForce 9500 GT] (rev a1)

on my system:

$ lsb_release -a -u
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 18.04.2 LTS
Release:    18.04
Codename:   bionic

I've followed the steps outlined here:

sudo apt-get purge nvidia*  
sudo apt-add-repository ppa:graphics-drivers/ppa
sudo apt update

but the command

sudo apt install nvidia-driver-

shows several available versions of the driver:

nvidia-driver-390  nvidia-driver-396  nvidia-driver-410  nvidia-driver-415  nvidia-driver-418

I've seen the 396 version used several times, but intuitively I would install the latest version. How do I know which one I should install?

Gabriel
  • 2,453
  • 7
  • 32
  • 52
  • 1
    For that old card choose the latest legacy driver version. –  Apr 08 '19 at 12:34
  • Which one would that be @GabrielaGarcia? – Gabriel Apr 08 '19 at 12:46
  • 1
    According to Nvidia that should be 340. If not available in the official repos or at a PPA better not to install anything else and just use the open-source nouveau. –  Apr 08 '19 at 12:49

1 Answers1

2

As Geforce 9600 GT owner I can write the following.

I'm using it with nvidia-340 driver on my 16.04 LTS, it still exists for all current releases. It is recommended on Nvidia Drivers site.

The driver PPA are not needed. So you may remove the PPA with

sudo apt-get install ppa-purge
sudo ppa-purge ppa:graphics-drivers/ppa

and install nvidia-340:

sudo apt-get install nvidia-340
N0rbert
  • 99,918