Adjust Tuning Profiles Flashcards
What command verifies tuned is installed?
dnf list tuned
What command lists the available tuning profiles and identifies the active profile?
sudo tuned-adm list
What command verifies the tuning profile values on a system?
sysctl vm.<tuning></tuning>
What command changes the current active tuning profile?
sudo tuned-adm profile <tuning></tuning>
What command confirms the active tuning profile?
sudo tuned-adm active
What is a for looping command
for i in {}; do <> & done
What command is used to terminate all running processes?
pkill <process></process>
What command is used to set the nice value of a process running in background?
nice -n <#> <process> &</process>
What command is used to view the nice value of a process?
ps -o nice $(pgrep <process>)</process>
What command is used to change the nice value of a process?
sudo renice -n <#> <Value> <PID></PID></Value>