Tune System Performance Flashcards

1
Q

What is the command to see which tuned profile is active?

A

tuned-adm active

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the command to list available tuned profiles?

A

tuned-adm list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the command to change the desired tuned profile?

A

tuned-adm profile profile-name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the command to change to the recommended tuned profile?

A

tuned-adm recommend

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the command to turn off tuned profile?

A

tuned-adm off

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the levels for nice from highest priority to lowest priority?

A

-20 (highest priority) to 19 (lowest priority)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a nice value?

A

Can be seen using command top or ps
It is a user-space priority

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is PR?

A

The actual process’s priority that is used by the linux kernel
Can also be seen in top

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you see process priority through the ps command?

A

ps axo pid,comm,nice,cls –sort=-nice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can you set process priority?

A

nice -n # process-name
ex: nice -n -15 top

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How can you change process priority?

A

renice -n # PID
ex: renice -n 12 PID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly