How To Maximize Bandwidth on Ubuntu Intrepid Ibex 8.10
How to improve your Internet speed on Ubuntu Linux 8.10 Intrepid Ibex, and work with all current linux operating systems. Below is simple tutorial and ready on less than 5 minutes Open a Terminal, than type, sudo gedit /etc/sysctl.conf or sudo vim /etc/sysctl.conf Then Paste the Following at the end of the file: ## increase TCP max buffer size setable using setsockopt() net.core.rmem_max = 16777216 net.core.wmem_max = 16777216 ## increase Linux autotuning TCP buffer limits ## min, default, and max number of bytes to use ## set max to at least 4MB, or higher if you use very high BDP paths net.ipv4.tcp_rmem = 4096 87380 16777216 net.ipv4.tcp_wmem = 4096 65536 16777216 ## don’t cache ssthresh from previous connection net.ipv4.tcp_no_metrics_save = [...]







