Created
June 24, 2026 01:48
-
-
Save henri/696bb34930cbfc765c5eda3aa814ac61 to your computer and use it in GitHub Desktop.
ionice cheatsheet
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
| # set existing process to be in 'Best Effort' class with priority 6 in that class | |
| # within the 'Best Effort' class priority 0 is highest and 7 is the lowest | |
| ionice -c 2 -n 6 -p <PID> | |
| # check what values are set for an existing process | |
| ionice -p <PID> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment