Adjust Tuning Profiles Flashcards

1
Q

What command verifies tuned is installed?

A

dnf list tuned

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

What command lists the available tuning profiles and identifies the active profile?

A

sudo tuned-adm list

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

What command verifies the tuning profile values on a system?

A

sysctl vm.<tuning></tuning>

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

What command changes the current active tuning profile?

A

sudo tuned-adm profile <tuning></tuning>

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

What command confirms the active tuning profile?

A

sudo tuned-adm active

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

What is a for looping command

A

for i in {}; do <> & done

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

What command is used to terminate all running processes?

A

pkill <process></process>

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

What command is used to set the nice value of a process running in background?

A

nice -n <#> <process> &</process>

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

What command is used to view the nice value of a process?

A

ps -o nice $(pgrep <process>)</process>

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

What command is used to change the nice value of a process?

A

sudo renice -n <#> <Value> <PID></PID></Value>

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