imported_LoKe
Lifer
Source
Basically you disable ipV6 which apparently conflicts with ipV4, I'm no expert on the whys or hows but like I said, it worked for me.
1. Open your Gnome Terminal/ KDE Konsole and type :-
For Gnome
2. Kate or Gedit will open and show you this file :-
(scroll down to see what to copy and paste)
3. Now "Save" and "Reboot"
There's another way too: instead of changing aliases file, create fie named bad_list in /etc/modprobe.d containing this line:
This method will work even if /etc/modprobe.d/aliases get replaced at some update.
Speeding up Firefox
Source
You can speed up your Firefox browser by doing the following:
Everyone should put there:
Now, include these, depending on your computer and internet connection:
FAST COMPUTER, FAST CONNECTION
FAST COMPUTER, SLOWER CONNECTION
FAST COMPUTER, SLOW CONNECTION
SLOW COMPUTER, FAST CONNECTION
DIAL-UP
This works like the Fasterfox app for Windows.
Basically you disable ipV6 which apparently conflicts with ipV4, I'm no expert on the whys or hows but like I said, it worked for me.
1. Open your Gnome Terminal/ KDE Konsole and type :-
For Gnome
or For KDEsudo gedit /etc/modprobe.d/aliases
sudo kate /etc/modprobe.d/aliases
2. Kate or Gedit will open and show you this file :-
(scroll down to see what to copy and paste)
# These are the standard aliases for devices and kernel drivers.
# This file does not need to be modified.
#
# Please file a bug against module-init-tools if a package needs a entry
# in this file.
# network protocols ################################################## ########
alias net-pf-1 unix
alias net-pf-2 ipv4
alias net-pf-3 ax25
alias net-pf-4 ipx
alias net-pf-5 appletalk
alias net-pf-6 netrom
alias net-pf-7 bridge
alias net-pf-8 atm
alias net-pf-9 x25
#Add the following lines:
alias net-pf-10 ipv6 off
alias net-pf-10 off
alias ipv6 off
alias net-pf-10 ivp6 #Comment this line by adding #, making it #alias net-pf-10 ivp6
alias net-pf-11 rose
alias net-pf-12 decnet
# 13 NETBEUI
alias net-pf-15 af_key
alias net-pf-16 af_netlink
alias net-pf-17 af_packet
3. Now "Save" and "Reboot"
There's another way too: instead of changing aliases file, create fie named bad_list in /etc/modprobe.d containing this line:
alias net-pf-10 off
This method will work even if /etc/modprobe.d/aliases get replaced at some update.
Speeding up Firefox
Source
You can speed up your Firefox browser by doing the following:
cd ~/.mozilla/firefox/*.default/
gedit user.js
Everyone should put there:
user_pref("network.http.pipelining", true); user_pref("network.http.proxy.pipelining", true); user_pref("network.http.pipelining.maxrequests", 8); user_pref("content.notify.backoffcount", 5); user_pref("plugin.expose_full_path", true); user_pref("ui.submenuDelay", 0);
Now, include these, depending on your computer and internet connection:
FAST COMPUTER, FAST CONNECTION
user_pref("content.interrupt.parsing", true); user_pref("content.max.tokenizing.time", 2250000); user_pref("content.notify.interval", 750000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 750000); user_pref("nglayout.initialpaint.delay", 0); user_pref(network.http.max-connections", 48); user_pref("network.http.max-connections-per-server", 16); user_pref("network.http.max-persistent-connections-per-proxy", 16); user_pref("network.http.max-persistent-connections-per-server", 8); user_pref("browser.cache.memory.capacity", 65536);
FAST COMPUTER, SLOWER CONNECTION
user_pref("content.max.tokenizing.time", 2250000); user_pref("content.notify.interval", 750000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 750000); user_pref("network.http.max-connections", 48); user_pref("network.http.max-connections-per-server", 16); user_pref("network.http.max-persistent-connections-per-proxy", 16); user_pref("network.http.max-persistent-connections-per-server", 8); user_pref("nglayout.initialpaint.delay", 0); user_pref("browser.cache.memory.capacity", 65536);
FAST COMPUTER, SLOW CONNECTION
user_pref("browser.xul.error_pages.enabled", true); user_pref("content.interrupt.parsing", true); user_pref("content.max.tokenizing.time", 3000000); user_pref("content.maxtextrun" 8191); user_pref("content.notify.interval", 750000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 750000); user_pref("network.http.max-connections", 32); user_pref("network.http.max-connections-per-server", 8); user_pref("network.http.max-persistent-connections-per-proxy", 8); user_pref("network.http.max-persistent-connections-per-server", 4); user_pref("nglayout.initialpaint.delay", 0); user_pref("browser.cache.memory.capacity", 65536);
SLOW COMPUTER, FAST CONNECTION
user_pref("content.max.tokenizing.time", 3000000); user_pref("content.notify.backoffcount", 5); user_pref("content.notify.interval", 1000000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 1000000); user_pref("content.maxtextrun", 4095); user_pref("nglayout.initialpaint.delay", 1000); user_pref("network.http.max-connections", 48); user_pref("network.http.max-connections-per-server", 16); user_pref("network.http.max-persistent-connections-per-proxy", 16); user_pref("network.http.max-persistent-connections-per-server", 8); user_pref("dom.disable_window_status_change", true);
DIAL-UP
user_pref("content.max.tokenizing.time", 2250000); user_pref("content.notify.interval", 750000); user_pref("content.notify.ontimer", true); user_pref("content.switch.threshold", 750000); user_pref("nglayout.initialpaint.delay", 750); user_pref("network.http.max-connections", 32); user_pref("network.http.max-connections-per-server", 8); user_pref("network.http.max-persistent-connections-per-proxy", 8); user_pref("network.http.max-persistent-connections-per-server", 4); user_pref("dom.disable_window_status_change", true);
This works like the Fasterfox app for Windows.