Tune System Performance Flashcards
What is the command to see which tuned profile is active?
tuned-adm active
What is the command to list available tuned profiles?
tuned-adm list
What is the command to change the desired tuned profile?
tuned-adm profile profile-name
What is the command to change to the recommended tuned profile?
tuned-adm recommend
What is the command to turn off tuned profile?
tuned-adm off
What are the levels for nice from highest priority to lowest priority?
-20 (highest priority) to 19 (lowest priority)
What is a nice value?
Can be seen using command top or ps
It is a user-space priority
What is PR?
The actual process’s priority that is used by the linux kernel
Can also be seen in top
How can you see process priority through the ps command?
ps axo pid,comm,nice,cls –sort=-nice
How can you set process priority?
nice -n # process-name
ex: nice -n -15 top
How can you change process priority?
renice -n # PID
ex: renice -n 12 PID