Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Second firefox command -new-tab command results in "Firefox is already running" popup in Linux

  • 3 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

Attempting to open several pages for help documentation using firefox, and running into an odd issue. The first file/link opens just fine, but subsequent links get the popup: "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".

Methods I've attempted to get the second link to open:

firefox -new-tab /path/to/file.html firefox -P profile_name -new-tab /path/to/file.html firefox -remote "openURL(/path/to/file.html)" firefox -P profile_name -remote "openURL(/path/to/file.html)"

Set "StartWithLastProfile=0" in profiles.ini and attempt to select the in-use profile manually. Results in "Firefox cannot use the profile "profile_name" because it is in use. To continue, close the running instance of Firefox or choose a different profile." popup.

The only way I've found to make subsequent links open at all is to make multiple profiles and open each link with a new profile.

Took a cue from this question's solution: https://support.mozilla.org/en-US/questions/1130718 I attempted to replicate that with xdg-open, to no success.

My best workaround is quite messy, running a script every time I need a new file / webpage opened by the application:

set time = `date +%s` set profile_path = ~/firefox/$time/ cp –irp $generic_profile $profile_path firefox --profile $profile_path /what/ever.html rm –rf $profile_path

Which comes with a side effect of not allowing interaction between the firefox windows, since they're all effectively different profiles.

Attempting to open several pages for help documentation using firefox, and running into an odd issue. The first file/link opens just fine, but subsequent links get the popup: "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". Methods I've attempted to get the second link to open: firefox -new-tab /path/to/file.html firefox -P profile_name -new-tab /path/to/file.html firefox -remote "openURL(/path/to/file.html)" firefox -P profile_name -remote "openURL(/path/to/file.html)" Set "StartWithLastProfile=0" in profiles.ini and attempt to select the in-use profile manually. Results in "Firefox cannot use the profile "profile_name" because it is in use. To continue, close the running instance of Firefox or choose a different profile." popup. The only way I've found to make subsequent links open at all is to make multiple profiles and open each link with a new profile. Took a cue from this question's solution: https://support.mozilla.org/en-US/questions/1130718 I attempted to replicate that with xdg-open, to no success. My best workaround is quite messy, running a script every time I need a new file / webpage opened by the application: set time = `date +%s` set profile_path = ~/firefox/$time/ cp –irp $generic_profile $profile_path firefox --profile $profile_path /what/ever.html rm –rf $profile_path Which comes with a side effect of not allowing interaction between the firefox windows, since they're all effectively different profiles.

所有回复 (3)

more options

With what command line do you open the first page?

If you have opened the first page with the -no-remote command line switch then you won't be able to open additional windows and tabs.

See also:

more options

No options at all. Just:

firefox /url/of/file.html &

Also checked aliases, there are no options set to run as an alias of firefox.

more options

Works for me on Linux. Make sure that "use the selected profile..." in the Profile Manager has a tick.

First start to select the profile:

#!/bin/sh

cd /usr/local/mozilla/firefox-RE
./firefox -P -url about:about

Start with -url:

#!/bin/sh

cd /usr/local/mozilla/firefox-RE
./firefox -url about:newtab

Start with -new-tab:

#!/bin/sh

cd /usr/local/mozilla/firefox-RE
./firefox -new-tab about:newtab