Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
显示当前正在运行的进程的命令和显示 PPID 的选项是什么?
我认为它可能是:
工作-p
工作-pl
虽然都没有工作。有什么提示吗?
ps -ef将显示所有进程并包括 PPID。
ps -ef
这真的取决于你在追求什么
你通常使用
top
查看进程如何消耗系统资源
但是,如果您只想查看某个进程 pid,并从用于运行它的命令中知道一些单词,请尝试:
ps -ef | grep java
还有其他(许多)命令和工具,这实际上取决于您寻找该过程的原因