From Fedora Project Wiki

< User:Fenris02

Revision as of 22:49, 18 January 2011 by Fenris02 (talk | contribs) (Created page with 'Slowness when browsing? * Sometimes your loaded extensions cause your browsing to be slow. Disable them and see if performance improves. * Many of these reference user...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Slowness when browsing?

   * Sometimes your loaded extensions cause your browsing to be slow. Disable them and see if performance improves. 
   * Many of these reference user.js [6] but you can use the about:config url as well if you prefer. Using user.js is preferable because Mozilla will not change these settings on your behalf, and you can easily undo them if something goes awry. 
   * Cleanly exit your browser. Go to your profile folder [7]and vacuum your db files 

cd $HOME/.mozilla/firefox/*/; for i in *.sqlite; do echo "VACUUM;" | sqlite3 $i ; done

   * Disable favicon and site-icon caching. Append do your user.js file: [8] [9] 

user_pref("browser.chrome.favicons", false); user_pref("browser.chrome.site_icons", false);

   * Turn off IPv6. Append to your user.js file: [10] 

user_pref("network.dns.disableIPv6", true);

   * Disable dbus notifications within Firefox. Append to your user.js file: [11] 

user_pref("toolkit.networkmanager.disable", true);

   * Turn off rich colour support. Append to user.js: [12] 

user_pref("gfx.color_management.enabled", false); user_pref("gfx.color_management.mode", 0);

   * Turn off paint delay. Append to user.js: [13] 

user_pref("nglayout.initialpaint.delay", 0);

   * Turn off firefox disk access (SSD option): [14][15][16][17] 

user_pref("browser.cache.disk.enable", false); user_pref("browser.cache.disk.capacity", 0); user_pref("browser.cache.offline.enable", false); user_pref("browser.cache.memory.enable", true);

[edit] Useful usability options

   * Enable form colours. Append to user.js: [18] 

user_pref("browser.display.use_focus_colors", true); user_pref("browser.display.focus_text_color", "#010101");

   * Disable blink tag. Append to user.js: [19] 

user_pref("browser.blink_allowed", false);