1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 05:17:58 +01:00
tldr/pages/common/ionice.md
2016-01-05 19:45:42 +09:00

490 B

ionice

Get or set program I/O scheduling class and priority. Scheduling classes: 1 (realtime), 2 (best-effort), 3 (idle). Priority levels: 0 (the highest) - 7 (the lowest).

  • Set I/O scheduling class of a running process

ionice -c {{scheduling_class}} -p {{pid}}

  • Run a command with custom I/O scheduling class and priority

ionice -c {{scheduling_class}} -n {{priority}} {{command}}

  • Print the I/O scheduling class and priority of a running process

ionice -p {{pid}}