Views:
3,783
Votes: 4
Tags:
drivers
nvidia
graphics
multiple-monitors
hdmi
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/967342
Title:
Ubuntu 16.04 Dell Screen Tearing
ID:
/2017/10/21/Ubuntu-16.04-Dell-Screen-Tearing
Created:
October 21, 2017
Edited: October 23, 2017
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
I used the most basic solution to fix screen tearing with the Intel iGPU (integrated Graphics Processing Unit).
With sudo
powers edit/create the file /usr/share/X11/xorg.conf.d/20-intel.conf
and copy in the following:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
EndSection
Save the file.
After making these changes you’ll need to restart xserver either by logging in again or rebooting. The latter is always preferable for me.
NOTE: Arch Linux recommends putting the file in /etc/X11/xorg.conf.d/20-intel.conf
which I’ve been using for a year. Both locations work.