Ubuntu – Intel HD graphics driver for 15.04

15.04intelintel graphics

I want to install the intel graphics HD driver on my Ubuntu 15.04 system. However, the installer from 01.org only works up to 14.10 (https://01.org/linuxgraphics/downloads/intel-graphics-installer-linux-1.1.0)

Is there any other (easy) way to install the driver? Any ppa…?

Best Answer

Intel Graphics Installer now 1.2.0 supports Ubuntu 15.04.

  1. Download Intel Graphics Installer 1.2.0
  2. Add Intel certificate :

    wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg -O - | \
    sudo apt-key add -
    
    wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg-2 -O - | \
    sudo apt-key add -
    
  3. Install it:

     sudo dpkg -i intel-linux-graphics-installer_*.deb
    
  4. Run the installer.


Refer on the Intel Graphics Installer page for more information.

Related Question