2

I have Ubuntu 13.10 installed.

When I try to install intel-linux-graphics-installer_1.0.2-0intel3_i386.deb

I have error:

dependency is not satisfiable libpackagekit-glib2-14

Why this happens ?

Braiam
  • 67,791
  • 32
  • 179
  • 269

2 Answers2

0

If Mitch's solution doesn't solve the issue, try:

sudo apt-get remove libpackagekit-glib2-14
wget https://download.01.org/gfx/ubuntu/13.04/main/pool/13.04/i/intel-linux-graphics-installer/intel-linux-graphics-installer_1.0.2-0intel3_i386.deb
sudo dpkg -i intel-linux-graphics*.deb && sudo apt-get install –f
sudo apt-get update && sudo apt-get dist-upgrade

(To reinstall the removed library; if the error still exists:)

sudo apt-get install libpackagekit-glib2-14
kiri
  • 28,246
  • 16
  • 81
  • 118
0

If you have a look in the package repo:
http://packages.ubuntu.com/search?keywords=+libpackagekit-glib2&searchon=names
...you'll see that 13.10 (saucy) only has a -16 build of libpackagekit-glib2 and the intel installer wants a `-14' build.

I'd assume that if you were on raring it would all work fine. You can verify that your system has the -16 build using:

dpkg -s libpackagekit-glib2-16

...and looking at the second line:

Status: install ok installed

Apparently there'll be a new version that'll support us: https://01.org/linuxgraphics/comment/431#comment-431

Tom Saleeba
  • 182
  • 1
  • 6