进入全屏模式时屏幕冻结 - Ubuntu 16.04 LTS

Chi*_*3ra 4 xorg fullscreen crash 16.04

在 i5 6200U 和标准集成英特尔显卡(驱动程序 = i915)上运行的 Ubuntu 16.04 LTS。

我使用 evince 查看文档,全屏显示,有时(并非总是)屏幕冻结,这意味着我可以移动鼠标,但单击时没有任何反应。我按 Ctrl + Alt + F1 并从那里重新启动计算机。

我认为 evince 是问题所在,但是 qpdfview 出现了同样的问题,我猜其他应用程序也是如此。

$ ls /var/crash
_usr_bin_evince.1000.crash   _usr_bin_evince.1000.uploaded
_usr_bin_evince.1000.upload  _usr_lib_xorg_Xorg.0.crash
Run Code Online (Sandbox Code Playgroud)

我在谷歌搜索时看到很多关于此问题的报告,但大多数都表明该问题已在 Ubuntu 16.04 中解决,我找不到任何相关的修复程序。

有什么建议?

编辑://

解决方案:

在 /usr/share/X11/xorg.conf.d 目录下创建了一个名为“20-modesetting.conf”的文件,内容如下:

Section "Device"
   Identifier  "Intel Graphics"
   Driver      "modesetting"
EndSection
Run Code Online (Sandbox Code Playgroud)

Chi*_*3ra 5

Create a file named 20-modesetting.conf under the /usr/share/X11/xorg.conf.d directory, with the following content:

Section "Device"
   Identifier  "Intel Graphics"
   Driver      "modesetting"
EndSection
Run Code Online (Sandbox Code Playgroud)

Some people suggest removing the Intel graphics driver entirely (https://bugs.chromium.org/p/chromium/issues/detail?id=606152#c73):

sudo apt-get purge xserver-xorg-video-intel
Run Code Online (Sandbox Code Playgroud)

This will essentially force Ubuntu to use the modesetting driver.

I think it is a more elegant solution to leave the Intel graphics driver as is and just override it with a simple configuration file.

For the moment, the Intel graphics driver is responsible for many problems, such as freezing when in full screen mode and flickering in Google Chrome.