add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

18
pages.zh/linux/renice.md Normal file
View File

@@ -0,0 +1,18 @@
# renice
> 更改正在运行的进程的调度优先级/友好度。
> 友好度值范围从 -20对进程最有利到 19对进程最不利
> 另见:`nice`。
> 更多信息:<https://manned.org/renice>。
- 设置正在运行的 [p]rocess 的绝对优先级:
`renice {{+3}} -p {{pid}}`
- 增加/减少某个 [u]用户所有进程的优先级:
`renice --relative {{-4}} -u {{uid|user}}`
- 设置属于某个进程 [g]roup 的所有进程的优先级:
`renice --absolute {{5}} -g {{process_group}}`