Return to Snippet

Revision: 1043
at September 3, 2006 13:26 by yuconner


Initial Code
#new process
nice -n PRIORITYNUMBER PROCESSNAME

#existing process
renice PRIORITYNUMBER PID_PROCESS

Initial URL
http://learnlinux.tsf.org.za/courses/build/internals/ch07s02.html

Initial Description
Example: nice -n 10 date
priority for root: -20 (higher priority) .. 19 (lower priority)
priority for common users: 0..19
To list process and nice value: "ps -el"

Initial Title
how to set the nice value of a process (priority execution)

Initial Tags
linux

Initial Language
Bash