个人工具

“UbuntuHelp:UbuntuLTSP/Firefox3Optimize”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/UbuntuLTSP/Firefox3Optimize}} {{Languages|UbuntuHelp:UbuntuLTSP/Firefox3Optimize}} This page is dedicated to optimizing Firefox 3.x in LTSP/Multi-...)
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/UbuntuLTSP/Firefox3Optimize}}
 
{{From|https://help.ubuntu.com/community/UbuntuLTSP/Firefox3Optimize}}
 
{{Languages|UbuntuHelp:UbuntuLTSP/Firefox3Optimize}}
 
{{Languages|UbuntuHelp:UbuntuLTSP/Firefox3Optimize}}
 +
{|border="1" cellspacing="0"
 +
|This page is specific to Ubuntu versions 8.04
 +
|}
 +
''If you find this information applicable to additional versions/releases, '''''please''''' edit this page and modify this header to reflect that. Please also include any necessary modifications for this information to apply to the additional versions.''
 +
----
 
This page is dedicated to optimizing Firefox 3.x in LTSP/Multi-user environments. It seems that Firefox 3.x development is focussed more on single-user setups than multi-user networks, especially LTSP type environments. Luckily, there are a few things you can do to make it run better under LTSP, by editing the following file (please note that these options have not been fully tested, but the instances where they were showed noticeable improvement in LTSP environments):
 
This page is dedicated to optimizing Firefox 3.x in LTSP/Multi-user environments. It seems that Firefox 3.x development is focussed more on single-user setups than multi-user networks, especially LTSP type environments. Luckily, there are a few things you can do to make it run better under LTSP, by editing the following file (please note that these options have not been fully tested, but the instances where they were showed noticeable improvement in LTSP environments):
 
/etc/firefox-3.0/pref/firefox.js:
 
/etc/firefox-3.0/pref/firefox.js:
第15行: 第20行:
 
pref("browser.cache.disk.enable", false);
 
pref("browser.cache.disk.enable", false);
 
</nowiki></pre>
 
</nowiki></pre>
 +
2009-02-03 Jordan Erickson: You also might want to take a look at http://lns.wikidot.com/nsprupdate if you are having trouble launching Firefox 3 with more than a few users at a time. ''please remove this message once nspr has been updated in the official repos''
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年5月12日 (二) 19:11的版本

This page is specific to Ubuntu versions 8.04

If you find this information applicable to additional versions/releases, please edit this page and modify this header to reflect that. Please also include any necessary modifications for this information to apply to the additional versions.


This page is dedicated to optimizing Firefox 3.x in LTSP/Multi-user environments. It seems that Firefox 3.x development is focussed more on single-user setups than multi-user networks, especially LTSP type environments. Luckily, there are a few things you can do to make it run better under LTSP, by editing the following file (please note that these options have not been fully tested, but the instances where they were showed noticeable improvement in LTSP environments): /etc/firefox-3.0/pref/firefox.js:

// Disable "safe browsing" feature that hogs CPU, HDD, etc. etc. in LTSP
pref("browser.safebrowsing.enabled", false);
pref("browser.safebrowsing.malware.enabled", false);

// Disable annoying location-bar suggestion "feature" that is sludgy with thin-clients
pref("browser.urlbar.maxRichResults", 0);

// Disable offline/disk caching of web pages
pref("browser.cache.offline.enable", false);
pref("browser.cache.disk.enable", false);

2009-02-03 Jordan Erickson: You also might want to take a look at http://lns.wikidot.com/nsprupdate if you are having trouble launching Firefox 3 with more than a few users at a time. please remove this message once nspr has been updated in the official repos