linux中,如何查看某个进程号下面有哪些子进程?

2025-06-23 04:29:00
推荐回答(4个)
回答1:

ps -lax查看进程,以及父进程。找到自己需要查看的进程的pid,然后

ps --ppid ****

回答2:

ps -ef |grep进程名
ps -aux |grep 进程名
ps --ppid xxxx
ps -lax
top

回答3:

ps aux |grep yourjinch或者top命令
编程方面的就不懂了 不好意思

回答4:

ps --ppid xxxx