Falha de segmentação no XServer

0

Tenho o ASUS ZenBook UX305 com CPU i7 e a GPU Intel integrada. Meu sistema (Ubuntu 15.10) recentemente começou a voltar para a tela de login depois de algum tempo ativo. É causado por segfault no XServer. Aqui está o fragmento do syslog

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.

e 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.

Também percebi que, toda vez que isso acontece, estou usando o Chrome (não sei se isso é relevante, porque o Chrome é executado em todas as pessoas Alguém sabe qual é o problema? Como depurar isso? algo que eu deveria relatar no bugs.launchpad.net?

    
por Marek Lipka 29.12.2015 / 23:21

1 resposta

1

Consegui resolver meu problema usando a solução descrita aqui:

link

para desativar o SNA.

Eu criei o arquivo /usr/share/X11/xorg.conf.d/20-intel.conf com o seguinte conteúdo:

Section "Device"
 Identifier "Card0"
 Driver "Intel"
 Option "AccelMethod" "uxa"
EndSection
    
por Marek Lipka 04.01.2016 / 22:31