Merge branch 'master' into master

waldyrious/alt-syntax
Dylan Rees 2015-12-29 00:33:21 -05:00
commit 9e17cedaab
1 changed files with 15 additions and 0 deletions

15
pages/common/renice.md Normal file
View File

@ -0,0 +1,15 @@
# renice
> Alters the scheduling priority/nicenesses of one or more running processes. Niceness values range from -20 (most favorable to the process) to 19 (least favorable to the process).
- Change priority of a running process.
`renice -n {{niceness_value}} -p {{pid}}`
- Change priority of all processes owned by a user.
`renice -n {{niceness_value}} -u {{user}}`
- Change priority of all processes that belongs to a group.
`renice -n {{niceness_value}} -g {{group}}`