Linux 下自动杀死进程
我该如何完成这个任务:如果我杀死一个进程,该进程和其他进程都会死亡?
How can I do this task: if I kill a process, that process and other processes will all die ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
杀死 init 进程。
Kill the init process.
如果杀死父进程,子进程将保留并成为僵尸进程。
If you kill the parent process, child processes will remain and become a zombie.
关于 Linux 下的进程终止,这里有很多很好的答案: 最佳终止方式所有子进程
由于我不太确定您对这个模棱两可的问题的意思,恐怕这是我能给您的最佳答案。
There are many nice answers about process termination under Linux in general here : Best way to kill all child processes
Since I'm not too sure what you mean with that ambiguous question, I'm afraid this is the best answer I can give you.