答案1
从这个案例中我们找到了答案: Ubuntu 16.10/17.04/17.10 中英特尔显卡屏幕撕裂/闪烁导致风扇过度使用的“解决方案”
正确的解决方案是创建以下文件夹和文件:
sudo mkdir /etc/X11/xorg.conf.d
gedit /etc/X11/xorg.conf.d/20-intel-graphics.conf
您可以使用任何您喜欢的文本编辑器
复制然后粘贴以下内容:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TripleBuffer" "true"
Option "TearFree" "true"
Option "DRI" "true"
EndSection
记得保存文件
不要在 /usr/share/X11/xorg.conf.d 中创建这些文件。这是 X 的示例配置文件的位置,而不是实际加载的文件的位置。
来源: 问题 945895