5

I try to find what graphics card I'm running, the commands in terminal only gives me this:

VGA compatible controller: Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller. 

How do I install the correct driver? As I can see that not everything is displaying correctly. I want to set a proper resolution, but can't as I don't have the right drivers on my Ubuntu 12.04 machine. It's an Acer Aspire One netbook.

Braiam
  • 69,112
Orosjopie
  • 565

3 Answers3

4

What you ran was lspci | grep -i vga that effectively gives you that "video card". You are already using the appropriated drivers for your system. If you want to see the kernel driver you should use lspci -knn | grep -A2 VGA

lspci -knn | grep -A2 VGA 
03:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] RV515 [Radeon X1300/X1550] [1002:7146]
    Subsystem: VISIONTEK Device [1545:2352]
    Kernel driver in use: radeon
                          ^^^^^^

As you can see, that is my "driver" for my dedicated video card. In your case it shows like that since recently Intel now includes GPU properties in their CPU. So the output is correct.

If you are having problems with your current drivers, is probably a bug, and as such it should be reported in LaunchPad. In AskUbuntu is there a guide to do so.

Braiam
  • 69,112
4

Here are the ways to install Intel Graphics Card Driver

1. If you are using Ubuntu 12.10 or higher, then you don't have to worry, as Intel has
 released a software for Linux system which will scans your graphics card and try to 
 install appropriate graphics driver. Please refer following link:

https://01.org/linuxgraphics/downloads/2013/intelr-linux-graphics-installer-version-1.0.2

2. If you are using Ubuntu 12.04 or less then you can always install you graphics driver
by running these command:

    $ sudo apt-get update
    $ sudo apt-get install xserver-xorg-video-intel

3. You can also give a try to this:

    $ sudo (jockey-gtk &)
As it will scan all your available drivers and try to install the missing one.

4. If nothing works then finally install latest driver by following these steps:
  • Open Ubuntu Software Center.
  • From the top-level menu, select Edit | Software Sources ... .
  • Select the Other Software tab.
  • Click the Add ... button.
  • Enter the following: deb https://download.01.org/gfx/ubuntu/12.04/main
  • Click the +Add Source button.
  • Provide your user password when requested.
  • Click the Close button.
  • Update and install by executing following commands:

    $ sudo apt-get update
    $ sudo apt-get install xserver-xorg-video-intel
    

Hope it will work for you!

Saurav Kumar
  • 15,174
1

Download the Intel graphics card installer.

The Intel Linux Graphics Installer allows you to easily install the latest graphics and video drivers for your Intel graphics hardware. This allows you to stay current with the latest enhancements, optimizations, and fixes to the IntelĀ® Graphics Stack to ensure the best user experience with your Intel graphics hardware. The IntelĀ® Linux Graphics Installer is available for the latest versions of Ubuntu and Fedora.

Once downloaded, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the downloads folder, and run the command(s) below:

sudo dpkg -i <package_name>.deb

Once installed, run the installed app, and it will detect, and download the right driver for you.

Edit

This driver file has been tried on 12.04 fully updated, and it worked OK, but if for any reason it gives an error or a problem you can download version 1.0.1 here. Keep in mind this is the 32bit version.

Edit 2

Try this, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-add-repository ppa:glasen/intel-driver
sudo apt-get update
sudo apt-get install xserver-xorg-video-intel

Source:Intel

Mitch
  • 109,787