renice - - set nice values of running processes
Lets say you have started a process as root and you are updating something. You notice a HUGE slowdown in your system. You open a shell, and type "top" and notice that a process is using 94% of your CPU and hogging all the cpu time slowing everything else to a crawl!!! now what!!!!
Enter the command renice. Just as the manpages say, renice "set nice values of running processes". So, while running top, you notice the PID (process ID number) of the offending program/command is XXXXX (will actually be a number not x's).
As a root from shell:
Code:
root:~# renice 19 XXXXX
This will reset the nice value to a much lower (probably) nice value than it's currently running (top shows that as well).
Code:
root:~ # renice 19 22537
22537: old priority 0, new priority 19
The man pages give a pretty good description of all of this, plus they give several other specific examples on how renice can also be used.
Recent comments
11 hours 33 min ago
16 hours 38 min ago
21 hours 3 min ago
22 hours 52 min ago
1 day 13 hours ago
1 day 13 hours ago
1 day 18 hours ago
2 days 47 min ago
2 days 1 hour ago
2 days 2 hours ago