Question

I've just installed Ubuntu 13.10 on my laptop, not as an upgrade but as a clean install.

Everything is working great, except for the fact that I'm now attempting to install the Intel graphics drivers from the official page and have run into a dependency error.

The package is asking for libpackagekit-glib2-14 and failing for lack of inclusion in the repos (as far as I can tell). I do have libpackagekit-glib2-16 installed, but as far as I can tell there is no way to revert back to 14, or install alongside.

If anyone could give me some guidance on a resolution to this I'd be greatly appreciative.

Was it helpful?

Solution

This question is a bit old now but there is no awnser, so, here we go... There is a new version, Intel(R) Graphics Installer 1.0.3 for Linux, that supports libpackagekit-glib2-16.

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

OTHER TIPS

First try with

$ sudo apt-get install -f

If it doesn't work & the error still persist, simply remove the old library as

$ sudo apt-get remove libpackagekit-glib2-16
OR
$ sudo dpkg -r libpackagekit-glib2-16

Whichever works for you.

Then freshly install your package. If the error about dependancy still persist, install the required library with following command.

$ sudo dpkg -i libpackagekit-glib2-14
OR 
$ sudo apt-get install libpackagekit-glib2-16

Finally you can remove the dependancies with the first command provided in this answer.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top