私のUbuntu 16.04で画面のちぎれやちらつきをなくすためにやらなければならなかったことは次のとおりです。
sudo apt-get install xserver-xorg-video-intel libva-intel-vaapi-driver
作成と編集~/.drirc
:
<device screen="0" driver="dri2">
<application name="Default">
<option name="vblank_mode" value="0"/>
</application>
</device>
作成と編集/usr/share/X11/xorg.conf.d/20-intel.conf
:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
Option "DRI" "3"
EndSection
上記はほとんどトリックを行います。:しかし、まさにこの動画のようにちらつき生成最近のカーネルのバージョン(最新の4.8までの4.0からアップ)での持続的なカーネルのバグがあり、https://www.youtube.com/watch?v=TqAljJ0U5Pcが。
ただし、非常に古いカーネルを使用している場合、ちらつきは停止します。
古いカーネルをダウンロードしてインストールします。
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.11.11-trusty/linux-image-3.13.11-03131111-generic_3.13.11-03131111.201411111336_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.11.11-trusty/linux-headers-3.13.11-03131111_3.13.11-03131111.201411111336_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.11.11-trusty/linux-headers-3.13.11-03131111-generic_3.13.11-03131111.201411111336_amd64.deb
sudo dpkg -i linux-headers-3.13.11-03131111_3.13.11-03131111.201411111336_all.deb linux-headers-3.13.11-03131111-generic_3.13.11-03131111.201411111336_amd64.deb linux-image-3.13.11-03131111-generic_3.13.11-03131111.201411111336_amd64.deb
最後に行うことは、上記のカーネルをデフォルトのカーネルにすることです。
/etc/default/grub
次の行を編集および変更/追加します。
GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 3.13.11-03131111-generic"
最後に、grubを更新します。
sudo update-grub