Last active
November 27, 2023 17:00
-
-
Save FrankieWOO/89c7b41411b509565d47632b19692233 to your computer and use it in GitHub Desktop.
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
echo 'deb http://deb.xanmod.org releases main' | sudo tee /etc/apt/sources.list.d/xanmod-kernel.list | |
wget -qO - https://dl.xanmod.org/gpg.key | sudo apt-key --keyring /etc/apt/trusted.gpg.d/xanmod-kernel.gpg add - | |
sudo apt update | |
sudo apt install linux-xanmod-rt-x64v3 | |
sudo addgroup realtime | |
sudo usermod -a -G realtime $(whoami) | |
#### add the following limits to the realtime group in /etc/security/limits.conf | |
# @realtime soft rtprio 99 | |
# @realtime soft priority 99 | |
# @realtime soft memlock 102400 | |
# @realtime hard rtprio 99 | |
# @realtime hard priority 99 | |
# @realtime hard memlock 102400 | |
#### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment