为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

[LINUX][NON-WINDOWS][ONLY REPRODUCABLE ON LINUX] Sessionstore variables for OS restart don't do anything

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

more options

browser.sessionstore.resuming_after_OS_restart = false. My browser still restores on os restart. Startup -> Restore previous windows and tabs is unchecked browser.sessionstore.max_resumed_crashes = 0 browser.sessionstore.restore_on_demand = false browser.sessionstore.resume_from_crash = false

I do not and will not manually close my browser session every time I want to shut down my computer in order to get it to do what it's supposed to. Linux sends SIGTERM to all running processes on shutdown. Firefox isn't handling this correctly, obviously, because if it was, then my settings would be getting respected. SIGTERM is the standard signal sent to windows that need to close gracefully and are expected to still be functional.

NOTE: Do not provide windows-specific support to this thread. I am not running firefox on windows, and I do not possess a windows computer or license.

browser.sessionstore.resuming_after_OS_restart = false. My browser still restores on os restart. Startup -> Restore previous windows and tabs is unchecked browser.sessionstore.max_resumed_crashes = 0 browser.sessionstore.restore_on_demand = false browser.sessionstore.resume_from_crash = false I do not and will not manually close my browser session every time I want to shut down my computer in order to get it to do what it's supposed to. Linux sends SIGTERM to all running processes on shutdown. Firefox isn't handling this correctly, obviously, because if it was, then my settings would be getting respected. SIGTERM is the standard signal sent to windows that need to close gracefully and are expected to still be functional. NOTE: Do not provide windows-specific support to this thread. I am not running firefox on windows, and I do not possess a windows computer or license.

被采纳的解决方案

When Firefox is signalled that the OS is shutting down it sets the following preference

browser.sessionstore.resume_session_once => true

(This is the same flag used when you restart Firefox to install an update, at least on Windows.)

That may be more relevant than the preference you're setting, or the one you're setting is overridden in the restart scenario:

https://searchfox.org/mozilla-release/source/browser/components/sessionstore/SessionStore.jsm#2246

定位到答案原位置 👍 2

所有回复 (7)

more options

Firefox might need more time to close properly then Linux allows, especially if you use "Clear history when Firefox closes". So if you are using this feature to clear data when you close Firefox then try to disable it to see if that has effect.

more options

cor-el said

Firefox might need more time to close properly then Linux allows, especially if you use "Clear history when Firefox closes". So if you are using this feature to clear data when you close Firefox then try to disable it to see if that has effect.

That setting isn't enabled either. Firefox is usually the first window to close, even faster than my terminal, so questionable whether it's a timing issue.

more options

选择的解决方案

When Firefox is signalled that the OS is shutting down it sets the following preference

browser.sessionstore.resume_session_once => true

(This is the same flag used when you restart Firefox to install an update, at least on Windows.)

That may be more relevant than the preference you're setting, or the one you're setting is overridden in the restart scenario:

https://searchfox.org/mozilla-release/source/browser/components/sessionstore/SessionStore.jsm#2246

more options

Oh wow that's obnoxious. That code means that *no matter what the user does* firefox will reload their session on OS restart.

more options

Hmm, perhaps it's too soon to give up? If you search for tips on using an autoconfig file to force browser.sessionstore.resume_session_once to false (using the lockpref() function) perhaps you can defeat it. It would be at the cost of never having Firefox restore your session automatically after a restart (i.e., having to restore your session manually from the menu in that case).

more options

jscher2000 - Support Volunteer said

Hmm, perhaps it's too soon to give up? If you search for tips on using an autoconfig file to force browser.sessionstore.resume_session_once to false (using the lockpref() function) perhaps you can defeat it. It would be at the cost of never having Firefox restore your session automatically after a restart (i.e., having to restore your session manually from the menu in that case).

What I did was raise an issue over on Bugzilla, and pointed the folx over there towards the problem code in question. This way we can get a proper fix instead of having to do hacky stuff.

由ctrentsj于修改

more options

For reference:


EDIT: An older bug that might be related:

  • 1754346 - Pages are restored after restart despite settings and about:config tweaks.

由cor-el于修改