mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
Added ionice
This commit is contained in:
parent
8e2cfdd3b6
commit
2827f15c69
1 changed files with 15 additions and 0 deletions
15
pages/common/ionice.md
Normal file
15
pages/common/ionice.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# ionice
|
||||
|
||||
> get/set program io scheduling class and priority
|
||||
|
||||
- sets process with PID 89 as an idle io process
|
||||
|
||||
`ionice -c 3 -p 89`
|
||||
|
||||
- runs 'bash' as a best-effort program with highest priority
|
||||
|
||||
`ionice -c 2 -n 0 bash`
|
||||
|
||||
- prints the class and priority of the processes with PID 89
|
||||
|
||||
`ionice -p 89`
|
Loading…
Add table
Reference in a new issue