Ubuntu 15.10 — 插入外接显示器时崩溃(Asus ux501jw-dh71)

Ubuntu 15.10 — 插入外接显示器时崩溃(Asus ux501jw-dh71)

刚买了一台新的华硕 ux501jw-dh71 笔记本电脑。只要我插上显示器,我的显示器就会崩溃,我所能做的就是用 ctrl-alt-fx 打开一个终端重新启动。我尝试了不同的 nvidia 驱动程序(352 和 355),但结果相同。尝试了不同的显示器,结果仍然相同。与笔记本电脑的内置显示器相比,所有外接显示器都不是 4k 显示器。在 Windows 上一切都正常,所以这不是电缆问题。

有人知道我该如何修复这个问题或者在哪里查看(日志文件)来了解发生了什么吗?

答案1

经过一番研究后,我发现我的华硕 UX303LA(B) 版本 14.04 也存在同样的问题,解决方法如下:https://bugzilla.redhat.com/show_bug.cgi?id=1188772 ——似乎对我有用。

(将 xorg.conf/20-intel.conf 中的 AccelMethod 切换为“uxa”)——我将在几天后在这里更新,看看它是否永久解决了。

   Edit:     /etc/X11/xorg.conf.d/20-intel.conf


Section "Device"
    Identifier  "Intel Graphics"
    Driver      "intel"
    Option     "AccelMethod"  "uxa"
EndSection

Section "ServerFlags"
    Option      "AIGLX" "on"
EndSection

Section "Extensions"
        Option      "Composite" "Enable"
EndSection

root@lappy ~ # cat /etc/issue
Ubuntu 14.04.4 LTS \n \l

root@lappy ~ # uname -a
Linux lappy 4.2.0-34-generic #39~14.04.1-Ubuntu SMP Fri Mar 11 11:38:02 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

许多其他参考资料都提到了 Dmesg 中的实际错误:

[14257.151579] WARNING: CPU: 2 PID: 27541 at /build/linux-lts-wily-MVxxD8/linux-lts-wily-4.2.0/drivers/gpu/drm/i915/intel_display.c:1365 assert_plane.constprop.96+0x73/0xa0 [i915]()
[14257.151581] plane A assertion failure (expected on, current off)

其他类似/可能的重复品:

on kernel.org bugzilla -- bug:  103771
on launchpad -- xserver-xorg-video-intel/+bug/1436590
on launchpad -- linux/+bug/1465506

相关内容