Ubuntu – How to see which video card on the Optimus-enabled machine is being used

12.04intel graphicsnvidianvidia-optimus

I'm Using Ubuntu 12.04.1 LTS on my Optimus-enabled Asus K55v notebook. This means it features two video cards; an integrated Intel one (1GB shared memory), and a discrete Nvidia Geforce 610M. Regarding this, I have a few related questions:

  1. How can I tell if my system is using the graphic card at all, and if so, how much?
  2. How do I determine whether the drivers of the Intel graphics are installed or not?
  3. I tried downloading the drivers from Nvidia's official website, but it did not install. From where do I get the drivers for Nvidia?
  4. How can I make the best use of the Nvidia graphics card (i.e. in what applications)?

Best Answer

You should use your package manager to install the Nvidia drivers because when an update comes down the pipe it makes it easier to upgrade the kernel and still keep your nvidia driver, or even get nvidia driver updates automatically.

If you have the other nvidia driver installed you will need to manually uninstall it. At least in my experience that is the most successful method. Those details are outlined in the read me file that came with the driver.

If you want to use the tested drivers that work well under Ubuntu then run this command

sudo apt-get install nvidia-current-updates

That should do it. If it is working successfully you should have an Nvidia control panel you can locate that in the dash.

It should give you your nvidia system temperature and other facts about your card.

hope this helps.

Related Question