终止进程不起作用

终止进程不起作用

我正在尝试终止一个进程(参见下面的代码),但没有成功。这个进程的运行不允许我用 Raspberry Pi 相机制作新视频,甚至不允许重新启动 Raspbian(这解决了问题):

pi@raspberrypi ~ $ ps -ef | grep raspi
pi       24267 22227  0 17:21 pts/2    00:00:00 grep --color=auto raspi
root     30071     1  0 16:31 ?        00:00:00 [raspivid]
pi@raspberrypi ~ $ sudo kill -9 30071
pi@raspberrypi ~ $ ps -ef | grep raspi
pi       24420 22227  0 17:22 pts/2    00:00:00 grep --color=auto raspi
root     30071     1  0 16:31 ?        00:00:00 [raspivid]

我怎样才能终止该进程?

谢谢!

答案1

该进程是否是僵尸进程或无法杀死的异常进程?使用

ps aux | grep raspi

查看 STAT 列(管道less可能有帮助,然后在其中搜索“raspi”)。(参见man ps不同的“进程状态代码”)

相关内容