Questions tagged «ps»

ps是Unix操作系统命令等,用于显示正在运行的进程。

2
标志为'ps'命令,可以过滤参数?
我知道可以过滤命令的参数“-C”。 但在我的场景中,我可能有一些具有相同进程名称和不同args的进程。 如何过滤这些args? (我知道我可以稍后管道,但这不是100%准确。即:当一个arg可能包含另一个arg时,例如,如果我想通过这些列表中的arg“bar”进行过滤: +---------+---------+-----------+ | Process | Command | Arguments | +---------+---------+-----------+ | 23 | foo | bar | | 48 | foo | barbaz | +---------+---------+-----------+ PS:我猜大多数答案都会建议我使用“pgrep”代替“ps”,但我想尽可能避免这种情况。
2 unix  process  ps 

2
在Unix中杀死一个进程
当我执行 ps -fea | grep ssh-agent 命令,我得到以下输出: tomcat 29057 14086 0 Jan 09 ? 0:00 ssh-agent oracle 1964 14086 0 Nov 26 ? 0:00 ssh-agent tomcat 13654 14086 0 Nov 13 ? 0:00 ssh-agent sgp 11818 14086 0 Jan 14 ? 0:00 ssh-agent oracle 24987 14086 0 Nov 14 ? …
1 unix  process  kill  ps 


1
如何判断进程是在主机中还是在docker容器中运行
我有很多 gitlab 过程,但是 gitlab 未在主机中安装: » ps -ef | grep -c gitlab 61 乍一看,这些过程看起来像正常过程: » ps -ef | grep gitlab | head root 1161 1 0 06:24 ? 00:00:06 /usr/local/bin/gitlab-runner run --working-directory /home/gitlab-runner --config /etc/gitlab-runner/config.toml --service gitlab-runner --syslog --user gitlab-runner root 3379 3164 0 06:24 ? 00:00:00 runsvdir -P /opt/gitlab/service …
linux  ubuntu  docker  top  ps 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.