如何在 Mint 上安装英特尔专有驱动程序?

如何在 Mint 上安装英特尔专有驱动程序?

更新:我在 HP 笔记本电脑上运行 Linux Mint 18.1。

VGA compatible controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display...

我可以从安装驱动程序https://01.org 但更新工具“make”失败(但 ./configure 运行干净)并出现错误:

make[3]: Leaving directory '/home/Documents/video_driver/xf86-video-intel-2.99.917/src/sna'
Making all in uxa
make[3]: Entering directory '/home/Documents/video_driver/xf86-video-intel-2.99.917/src/uxa'
  CC       intel_display.lo
  CC       intel_driver.lo
intel_driver.c: In function 'redisplay_dirty':
intel_driver.c:645:2: error: too many arguments to function 'PixmapSyncDirtyHelper'
  PixmapSyncDirtyHelper(dirty, &pixregion);
  ^
In file included from /usr/include/xorg/gc.h:54:0,
                 from /usr/include/xorg/dix.h:51,
                 from /usr/include/xorg/privates.h:151,
                 from /usr/include/xorg/cursor.h:53,
                 from /usr/include/xorg/scrnintstr.h:53,
                 from /usr/include/xorg/xf86str.h:39,
                 from /usr/include/xorg/xf86.h:44,
                 from intel_driver.c:49:
/usr/include/xorg/pixmap.h:131:1: note: declared here
 PixmapSyncDirtyHelper(PixmapDirtyUpdatePtr dirty);
 ^
Makefile:524: recipe for target 'intel_driver.lo' failed
make[3]: *** [intel_driver.lo] Error 1
make[3]: Leaving directory '/home/Documents/video_driver/xf86-video-intel-2.99.917/src/uxa'
Makefile:598: recipe for target 'all-recursive' failed
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory '/home/Documents/video_driver/xf86-video-intel-2.99.917/src'
Makefile:468: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/Documents/video_driver/xf86-video-intel-2.99.917'
Makefile:399: recipe for target 'all' failed
make: *** [all] Error 2

错误。

我确实为 ATI (不是英特尔)找到了这个 https://lists.x.org/archives/xorg-driver-ati/2015-July/027750.html 它失败了。虽然我在尝试之前就知道会失败,但目标文件都不存在。我找不到专门针对英特尔的产品。

所有驱动程序软件都不会在我的系统上留下驱动程序文件的痕迹(即 .ko 驱动程序文件)来执行手动安装(我知道如何使用 modprobe)。

在哪里可以获得 .ko 文件,以便我可以进行手动安装并跳过所有安装脚本?

或者安装作为选择#2的脚本

答案1

英特尔不提供专有驱动程序,01.org 上的软件包只是为了更新选定发行版(Fedora 和 Ubuntu)的开源驱动程序而存在。如果您想要更新的驱动程序,您只需更新内核(对于驱动程序)和台面(对于与之一起使用的用户空间)。

答案2

即使使用 LTS 内核和最新的内核,我的 Xubuntu 系统仍然随机挂起,只需要硬系统重置。由于这种不正常的关闭方法,我的根文件系统被损坏两次后,我开始寻找解决方案。

这对我有用:我将以下部分添加到/usr/share/X11/xorg.conf.d/20-intel.conf

Section "Device"
Identifier "Card0"
Driver "Intel"
Option "AccelMethod" "uxa"
EndSection 

由于某种原因,默认 sna 方法会导致随机系统挂起,除了硬系统断电之外,还有其他选项。更改为 uxa 后,我没有遇到过系统冻结的情况。

我尝试在论坛上提问,但像往常一样,那里的人只是嘲笑我,所以我认为短期内不会有解决方案。

相关内容