Tag Archives: iface

Recommended Iface

Ubuntu Hack – How to Make Ubuntu run Super Fast!

For those of us who are anti-Windows and anti-Mac, we will benefit from learning how to make Ubuntu run super fast.

Here’s some great tips on minimizing processes to make your Ubuntu run faster than ever:

1. Remove Network Manager if you do not need it “sudo apt-get remove network-manager”. If possible give yourself a static IP in /etc/network/interfaces like so:

auto lo iface lo inet loopback

auto eth0 iface eth0 inet static address 192.168.1.150 netmask 255.255.255.0 network 192.168.1.100 broadcast 192.168.0.255 gat

Click Here to Read Full Article

1 Comment

Linux Server Hack – How to Limit Bandwidth with Linux, TC, and iproute2!

Remember I did a quick post on how to write a load-balancing script (or bandwidth throttling)?

Well, today I found another cool script for limiting bandwidth.  I believe this one if more complicated but if you need it, it might be greatly helpful.

Here’s the code via Adamsinfo.com:

# Set some variables #!/bin/bash EXT_IFACE=”e

Click Here to Read Full Article

1 Comment