主机测评网's Archiver
论坛
›
综合教程
› Centos通过ps查看指定用户下的进程
幸福341
发表于 2024-9-12 00:52:23
Centos通过ps查看指定用户下的进程
查看某个用户名下的进程信息:例如 root
ps -f -u root
查看root用户下的用户进程信息,排除了系统进程
ps -f -u root | egrep -v "\[|systemd"
页:
[1]
查看完整版本:
Centos通过ps查看指定用户下的进程