XServer 中的分段错误

XServer 中的分段错误

我有一台华硕 ZenBook UX305,配备 i7 CPU 和集成英特尔 GPU。我的系统(Ubuntu 15.10)最近在运行一段时间后开始返回登录屏幕。这是由 XServer 中的段错误引起的。以下是系统日志片段

Dec 29 22:44:45 marek-UX305LA org.ayatana.bamf[1365]: (bamfdaemon:1479): Gdk-WARNING **: bamfdaemon: Fatal IO error 11(Zasoby chwilowo niedostępne) on X server :0. 
Dec 29 22:44:45 marek-UX305LA org.a11y.atspi.Registry[1507]: XIO:  fatal IO error 11
(Resource temporarily unavailable) on X server ":0" 
Dec 29 22:44:45 marek-UX305LA org.a11y.atspi.Registry[1507]: after 5593 requests (5593
known processed) with 0 events remaining. 
Dec 29 22:44:45 marek-UX305LA gnome-session[1489]: (unity-fallback-mount-helper:1670):
Gdk-WARNING **: unity-fallback-mount-helper: Fatal IO error 11 (Zasoby
chwilowo niedostępne) on X server :0. 
Dec 29 22:44:45 marek-UX305LA gnome-session[1489]: (polkit-gnome-authentication-agent-1:1678):
Gdk-WARNING **: polkit-gnome-authentication-agent-1: Fatal IO error 11
(Zasoby chwilowo niedostępne) on X server :0. 
Dec 29 22:44:45 marek-UX305LA org.freedesktop.Notifications[1365]: (notify-osd:2501):
Gdk-WARNING **: notify-osd: Fatal IO error 11 (Zasoby chwilowo
niedostępne) on X server :0.

和 Xorg.0.log.old:

[   606.177] (EE) 
[   606.177] (EE) Backtrace:
[   606.177] (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x5617f849f68e]
[   606.177] (EE) 1: /usr/bin/X (0x5617f82eb000+0x1b89f9) [0x5617f84a39f9]
[   606.177] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7ff040cf2000+0x352f0) [0x7ff040d272f0]
[   606.177] (EE) 
[   606.177] (EE) Segmentation fault at address 0x0
[   606.177] (EE) 
Fatal server error:
[   606.177] (EE) Caught signal 11 (Segmentation fault). Server aborting
[   606.177] (EE) 
[   606.177] (EE) 
Please consult the The X.Org Foundation support 
     at http://wiki.x.org
 for help. 
[   606.177] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   606.177] (EE) 
[   606.177] (II) AIGLX: Suspending AIGLX clients for VT switch
[   606.277] (EE) Server terminated with error (1). Closing log file.

我还注意到,每次发生这种情况时,我都在使用 Chrome(但我不知道这是否相关,因为 Chrome 每次运行都有人知道问题可能是什么吗?我该如何调试它?我应该在 bugs.launchpad.net 上报告吗?

答案1

我设法通过使用此处描述的解决方法解决了我的问题:

https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1510970

禁用 SNA。

我创建了 /usr/share/X11/xorg.conf.d/20-intel.conf 文件,其内容如下:

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

相关内容