Last active
August 30, 2021 09:02
-
-
Save portothree/99b616e9080702ee016fcccea583cd99 to your computer and use it in GitHub Desktop.
Fix AMD GPU Radeon Screen Tearing in Debian, Linux Mint and Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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