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

24
pages.zh/linux/pidstat.md Normal file
View File

@@ -0,0 +1,24 @@
# pidstat
> 显示系统资源使用情况,包括 CPU、内存、IO 等。
> 更多信息:<https://manned.org/pidstat>。
- 每 2 秒显示一次 CPU 统计信息,共 10 次:
`pidstat {{2}} {{10}}`
- 显示页面错误和内存利用率:
`pidstat -r`
- 显示每个进程 ID 的输入/输出使用情况:
`pidstat -d`
- 显示特定 PID 的信息:
`pidstat -p {{PID}}`
- 显示所有命令名称包含 "fox" 或 "bird" 的进程的内存统计信息:
`pidstat -C "{{fox|bird}}" -r -p ALL`