Ubuntu 20.04 上的视觉故障

Ubuntu 20.04 上的视觉故障

从几天前开始,我的屏幕就出现了严重的视觉故障(仅在某些应用程序中)。当 CPU 使用率高时,问题会变得更严重。我尝试更新视频驱动程序,但没有效果。有什么想法吗?

漏洞截图

00:02.0 VGA compatible controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display (rev 0e)

答案1

已经两天了,我的屏幕没有出现任何失真或故障,所以我认为可以合理地说问题已经解决了。

是时候与社区分享我为修复该问题所做的事情了。

首先,@vanadium 建议的解决方案在某种程度上减少了扭曲。

GRUB_DEFAULT=0 GRUB_TIMEOUT_STYLE=hidden GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR='lsb_release -i -s 2> /dev/null || echo Debian'
GRUB_CMDLINE_LINUX_DEFAULT="splash quiet iommu=pt i915.enable_psr=0"
GRUB_CMDLINE_LINUX=""

此解决方案解决了这个问题,我使用 touch 命令创建了一个 /usr/share/X11/xorg.conf.d/20-intel.conf 文件并插入了以下配置:

    Section "Device"
   Identifier  "Intel Graphics"
   Driver      "intel"
   Option      "AccelMethod" "sna"
   Option      "TearFree"    "true"
   Option      "DRI"         "1"
    EndSection

相关内容