Problem Statement
Which command adjusts the scheduling priority of a process?
Explanation
renice changes the priority of an already running process. Lower values make a process more CPU-prioritized.
System admins use it to ensure critical tasks get more compute resources than background jobs.
Code Solution
SolutionRead Only
sudo renice -n -5 -p 3456
Practice Sets
This question appears in the following practice sets: