Forrest logo
back to context overview

renice

List of commands for renice:

  • renice:tldr:7033b renice: Change priority of all processes owned by a user.
    $ renice -n ${niceness_value} -u ${user}
    try on your machine
    explain this command
  • renice:tldr:9fdfd renice: Change priority of a running process.
    $ renice -n ${niceness_value} -p ${pid}
    try on your machine
    explain this command
  • renice:tldr:f373a renice: Change priority of all processes that belong to a process group.
    $ renice -n ${niceness_value} --pgrp ${process_group}
    try on your machine
    explain this command
back to context overview