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 ?
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 ?
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
This may mean that the package is missing, has been obsoleted, or is only available from another source
– Lolwhites Dec 10 '13 at 15:56If 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
sudo apt-get -f install
– Mitch Nov 19 '13 at 10:24