Skip to content

Instantly share code, notes, and snippets.

@portothree
Last active August 30, 2021 09:02
Show Gist options
  • Select an option

  • Save portothree/99b616e9080702ee016fcccea583cd99 to your computer and use it in GitHub Desktop.

Select an option

Save portothree/99b616e9080702ee016fcccea583cd99 to your computer and use it in GitHub Desktop.
Fix AMD GPU Radeon Screen Tearing in Debian, Linux Mint and Ubuntu
lspci -nnk | grep -i -EA3 "3d|display|vga"
ls -l /etc/X11
mkdir ~/xorg-backup
sudo mv -v /etc/X11/xorg.conf ~/xorg-backup/
sudo mv -v /etc/X11/xorg.conf.d ~/xorg-backup/
sudo vim /etc/X11/xorg.conf
Section "Device"
Identifier "Radeon"
Driver "radeon"
Option "TearFree" "on"
EndSection
sudo mkdir /etc/X11/xorg.conf.d
sudo vim /etc/X11/xorg.conf.d/20-amdgpu.conf
Section "Device"
Identifier "AMD"
Driver "amdgpu"
Option "TearFree" "true"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment