Firefox 已运行,但无响应

Firefox 已运行,但无响应

我正在使用两个 Icedove (Thunderbird) 配置文件。我使用以下命令启动配置文件:

icedove -P "default" %u
icedove -P "test" -no-remote --class test %u

当我单击“默认” Icedove(Thunderbird)配置文件中的链接(URL)时,Iceweasel(Firefox)窗口就会打开,正如我所期望的那样。

但是,当我单击“测试”配置文件中的链接(URL)时,出现以下错误:

在此处输入图片描述

我该如何解决这个问题?

我正在使用 Debian Wheezy

答案1

尝试终止所有与 iceweasel 和 firefox 相关的进程,然后重新启动

ps aux | grep iceweasel

ps aux | grep firefox

获取两个进程的 Process_ID 并将其终止

kill  -9 <Process_ID>

希望这可以帮助!

答案2

使用选项启动 thunderbird --no-remote。从 man 中thunderbird

   --no-remote
          Don't connect to a running Thunderbird instance. Don't accept or send remote commands. This option can be necessary in conjunction to several of the options above, that won't have any effect when an Thunderbird instance is running unless -no-remote is used at the same time.

相关内容