如何从 Putty 关闭 Firefox 服务?

如何从 Putty 关闭 Firefox 服务?

我如何从 Putty 关闭 Firefox 服务?

我曾尝试使用服务命令..但我不知道确切的语法..

我收到以下警告框

Firefox is already running, but is not responding. To open a new window, you must     first close the existing Firefox process, or restart your system.

请帮我关闭 Firefox 并通过 Putty 再次打开它.....

提前致谢....

答案1

您可以使用以下命令获取 Firefox 'pid':

ps -ef | grep -i firefox

它应该给出至少 2 行输出,其中一行是您的“grep”命令,另一行应该是正在运行的 Firefox 进程。您可以使用以下命令终止这些进程:

kill -9 <pid>

是行上的第二个数字,行上的第三个数字是父 pid,如果第一个命令中有超过 2 行,则尝试找到所有进程指向的父 pid 并终止该进程。

答案2

根据您的发行版,以下命令可能会执行此操作:

杀死 Firefox

如果没有,请尝试:

pgrep -fl 火狐

获取 Firefox 的进程 ID,然后:

杀死PID

其中 PID 是进程 ID。

相关内容