Etiquette: Running Nice on other desktop machines: Difference between revisions

From csml-wiki.northwestern.edu
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
nice -19 ~/run.py
nice -19 ~/run.py


UNIX priority levels are counted from negative (highest) to positive
UNIX priority levels are counted from negative (highest) to positive.





Revision as of 17:25, 29 September 2015

When using someone else's machine, it's polite to use the command nice and renice.

Nice changes the priority of a task. When using another machine, you want to set your task to a lower priority as to not interfere with the user's tasks. Priority ranges from -20 (highest) to 20 (lowest).

nice [options] [command]

Example:

nice -19 ~/run.py

UNIX priority levels are counted from negative (highest) to positive.


Renice allows you to reset the priority of a process that is already running.

renice [-n] [PID] [options]

Replace [-n] with the desired priority, and [PID] with the process ID number.