CentOS Process command 分类: linux 标签:centos 2018-03-23 14:47:47 # 获取指定名称进程ID pidof name # 获取进程IO信息 pidstat -d -p pid f #获取进程CPU信息 pidstat -u -p pid f #获取进程内存信息 pidstat -r -p pid f #查看进程打开文件数 lsof -p PID | wc -l