无法使Intel HD 5500图形与Debian一起使用


12

我正在使用Debian 8,但似乎没有使用集成显卡。

这是在使用HD 5500集成显卡的Asus Zenbook UX303上:

$ sudo lspci -vnn | grep VGA -A 12
00:02.0 VGA compatible controller [0300]: Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) (prog-if 00 [VGA controller])
    Subsystem: ASUSTeK Computer Inc. Device [1043:183d]
    Flags: bus master, fast devsel, latency 0, IRQ 64
    Memory at f6000000 (64-bit, non-prefetchable) [size=16M]
    Memory at e0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at f000 [size=64]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [d0] Power Management version 2
    Capabilities: [a4] PCI Advanced Features
    Kernel driver in use: i915

似乎有一个正在使用的驱动程序,但是,似乎该机器实际上并未在使用该显卡:

$ glxinfo | grep OpenGL
OpenGL vendor string: VMware, Inc.
OpenGL renderer string: Gallium 0.4 on llvmpipe (LLVM 3.5, 256 bits)
OpenGL version string: 3.0 Mesa 10.3.2
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:

如何让Debian实际使用集成显卡?

$ uname -a
Linux zenbook 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3~deb8u1 (2015-04-24) x86_64 GNU/Linux

我还尝试了从4.0.2内核开始的不稳定版本,它没有任何改变。ame

$ uname -a
Linux zenbook 4.0.0-1-amd64 #1 SMP Debian 4.0.2-1 (2015-05-11) x86_64 GNU/Linux

Answers:


29

不幸的是,杰西(Jessie)并未完全支持Broadwell图形。但是,所需的驱动程序已被反向移植,因此,如果启用了Jessie反向移植,则可以解决此问题。

首先,您需要将Jessie反向移植添加到您的存储库中(如果尚未存在)(感谢Anders提醒您使用单独的文件):

echo deb http://http.debian.net/debian jessie-backports main > /etc/apt/sources.list.d/jessie-backports.list

(如root),然后

apt-get update
apt-get -t jessie-backports install xserver-xorg-video-intel

应该允许X正确使用HD 5500。

启用反向端口很安全:不会从反向端口自动拾取较新的软件包,您需要使用-t jessie-backports上述方法明确选择它们。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.