Este site está com funcionalidades limitadas enquanto realizamos manutenção para melhorar sua experiência de uso. Se nenhum artigo resolver seu problema e você quiser fazer uma pergunta, nossa comunidade de suporte pode te ajudar em @FirefoxSupport no Twitter e /r/firefox no Reddit.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

Disable history and password saving for all users via console and task bar drop down

  • 2 respostas
  • 1 tem este problema
  • 1 visualização
  • Última resposta de cor-el

more options

I am trying to find out how to disable the browsing history and ability to save passwords via console commands or editing a config file for CentOS 6.5+. I have tried many options, and have it only partially working.

Settings work when launched via console (/usr/bin/firefox, or just firefox) by adding the following to /usr/lib64/firefox/defaults/preferences/all-linux.js: pref("browser.privatebrowsing.autostart", true); pref("disable.password.save", true); pref("places.history.enabled", false);

However, these settings do not affect firefox when launched via the task bar drop down (Applications > Internet > Firefox Web Browser). I can manually edit the menu item by right-clicking on Applications on the task bar, but I need to have a way that I can change it via console, so it can be scripted for security hardening purposes.

Anyone have any ideas on how to get this to work?? Thanks in advance.

I am trying to find out how to disable the browsing history and ability to save passwords via console commands or editing a config file for CentOS 6.5+. I have tried many options, and have it only partially working. Settings work when launched via console (/usr/bin/firefox, or just firefox) by adding the following to /usr/lib64/firefox/defaults/preferences/all-linux.js: pref("browser.privatebrowsing.autostart", true); pref("disable.password.save", true); pref("places.history.enabled", false); However, these settings do not affect firefox when launched via the task bar drop down (Applications > Internet > Firefox Web Browser). I can manually edit the menu item by right-clicking on Applications on the task bar, but I need to have a way that I can change it via console, so it can be scripted for security hardening purposes. Anyone have any ideas on how to get this to work?? Thanks in advance.

Todas as respostas (2)

more options

hi xion824, please refer to the guide at http://kb.mozillazine.org/Locking_preferences on how to deploy/lock certain preferences. in addition, please note that the right preference for disabling the storage of passwords is signon.rememberSignons (has to be set to false in this case).

more options

Note that a pref() call sets the pref on each Firefox start and that users are still able to make changes for the current session.

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

See also Configuration: