我正在按照英特尔网站上的说明在 Ubuntu 16.04.3 LTS 上安装英特尔图形驱动程序:
https://01.org/linuxgraphics/downloads/intel-graphics-update-tool-linux-os-v2.0.2
但是在运行该工具时我遇到了以下错误
Error running transaction:
GDBus.Error:org.debian.apt.TransactionFailed: error-dep-resolution-
failed: The following packages have unmet dependencies:
libgles1-mesa: Depends: libglapi-mesa (= 12.0.6-0ubuntu0.16.04.1) but
17.0.7-0ubuntu0.16.04.1 is to be installed
我尝试使用该工具的更新版本之一(适用于较新的系统),但遇到了相同的依赖问题(版本 2.0.5)。
答案1
我通过以下链接中 Reborn 的答案解决了该问题:
英特尔图形安装程序 2.0.2 在全新 Ubuntu 16.04 上失败
为稳定的 mesa-utils 添加 PPA 存储库:
sudo add-apt-repository ppa:paulo-miguel-dias/pkppa && sudo apt-get update
安装新的 mesa 驱动程序。
sudo apt-get install mesa-utils
安装最新版本的英特尔工具
sudo dpkg -i intel-graphics-update-tool_2.0.5_amd64.deb
现在一切都应该正常运行。