将我的系统从 19.04 升级到 20.04 后,开始出现一些随机补丁。这些图案仅出现在桌面上,而不会出现在其他应用程序窗口或可通过 CTRL+ALT+F 访问的终端屏幕上。另外,有趣的是,如果我更改背景图像,它们会消失一段时间,然后再次出现。
我认为这不是物理设备的问题。但我不确定我是否只是缺少一些关键软件包,或者某些软件包中有错误。
$ apt-cache policy xserver-xorg-video-intel
xserver-xorg-video-intel:
Installed: 2:2.99.917+git20200226-1
Candidate: 2:2.99.917+git20200226-1
Version table:
*** 2:2.99.917+git20200226-1 500
500 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages
100 /var/lib/dpkg/status
$ lspci -nnk
... omitted ...
00:02.0 VGA compatible controller [0300]: Intel Corporation HD Graphics 5500 [8086:1616] (rev 09)
DeviceName: 32
Subsystem: Hewlett-Packard Company HD Graphics 5500 [103c:2248]
Kernel driver in use: i915
Kernel modules: i915
... omitted ...
$ uname -a
Linux ProBook 5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
有人有什么建议或遇到同样的问题吗?
答案1
这对我有用:
创建 /usr/share/X11/xorg.conf.d/20-intel.conf:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "uxa"
EndSection
重启
然而,我发现经过上述修改后系统变得有些迟缓。
使用以下方法可获得更好的结果:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "DRI" "3"
EndSection
可以尝试将“DRI”的值设置为“FALSE”、“1”、“2”、“3”。在我的系统上,“2”再次给出补丁,glxgears 不会运行。