Created
January 14, 2026 01:44
-
-
Save teklynk/1ff4c08a51a1963f1046edb5522d9ff0 to your computer and use it in GitHub Desktop.
Fix stuttering with some video games on Debian based Linux
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
| # Fix stutter issues in games? | |
| # Note that disabling split lock mitigation may introduce security risks, particularly in multi-tenant environments, as it could allow malicious processes to perform denial-of-service attacks. | |
| sudo sysctl kernel.split_lock_mitigate=0 | |
| # Make the setting persist on boot | |
| echo "kernel.split_lock_mitigate=0" | sudo tee /etc/sysctl.d/50-split-lock.conf | |
| sudo sysctl -p /etc/sysctl.d/50-split-lock.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment