我最近刚买了一个 Intel i7 4790k CPU,不久后就安装了 Xubuntu。很多东西似乎都运行正常,但是 4790k 的 HD 4600 似乎有点吃力。移动窗口会导致抖动和撕裂。
有没有办法解决这个问题或者至少找出问题所在?
sudo lshw -C display
输出似乎还不错。
*-display
description: VGA compatible controller
product: Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
version: 06
width: 64 bits
clock: 33MHz
capabilities: msi pm vga_controller bus_master cap_list rom
configuration: driver=i915 latency=0
resources: irq:44 memory:df800000-dfbfffff memory:c0000000-cfffffff ioport:f000(size=64)
答案1
1. 启用与垂直空白同步绘制
如果您使用的是 Xubuntu,您可以在“系统设置”->“窗口管理器调整”->“合成器”下找到此选项。我不知道在其他发行版中在哪里。此选项基本上意味着绘图时的某种垂直同步。
2. 创建并编辑 xorg.conf
/etc/X11/xorg.conf
如果不退出则创建并添加:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
3. 如果前两个步骤不起作用
在为朋友设置 Nvidia 显卡时,我注意到并不xorg.conf
总是够用。有时更换合成器会有所帮助。对于他,我将标准 Xubuntu 合成器切换为“compton”。之后一切正常。
重新启动就可以了。