0

I am currently using Ubuntu 12.04 LTS, and I'm trying to upgrade to 14.04 LTS, it tells me "Your graphics hardware may not be fully supported in Ubuntu 14.04". My output using lspci | grep VGA gives the following:

00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [Quadro NVS 4200M] (rev a1)

Is it because that my NVIDIA hardware is really not suitable for 14.04, or is it due to some improper configurations that has made the system ignored my NVIDIA graphic card and could only see my integrated graphics card instead? What should I do in this case? Many thanks in advance!

CathIAS
  • 177
  • 2
  • 12

2 Answers2

0

Your video card is supported starting with nvidia-270 (for 32-bit systems).

For 14.04

Install at least nvidia-346 via

sudo apt-get install nvidia-346

To install nvidia-352 you need an additional PPA

sudo apt-add-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-352  
sudo reboot

For 12.04

Install at least nvidia-340 via

sudo apt-get install nvidia-340

To install version nvidia-346 you need an additional PPA

sudo apt-add-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-346
sudo reboot

A.B.
  • 90,397
0

The problem is perfectly solved. Here's the link (another question I asked about driver settings): nvidia-settings won't work properly in Ubuntu 12.04

Basically the drivers weren't properly installed, and after removing all packages from nvidia the update manager worked fine. The packages can be later correcty installed after the update is complete.

CathIAS
  • 177
  • 2
  • 12