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.
我注意到在我的一个开发服务器中,有一个测试脚本执行一个命令,该命令每 10 秒占用 CPU 10 秒。
我杀死了运行测试脚本的进程,但是在监视正在运行的进程时,我注意到测试脚本被一些未知进程定期启动。我在想它的一些 cron 工作开始了。有没有办法找出哪个进程定期执行这个测试脚本?
您可以使用以下命令查看进程 ID 及其父 ID ps:
ps
$ ps -o pid,ppid 4708 PID PPID 4708 4580
或者您可以只获取它的父母 ID:
$ ps -o ppid= 4708 4580