Box.com (formerly known as box.net) is an online file sharing and Cloud content management service for enterprise companies. With a recent promotion you could get as much as 50GB of storage space and what better thing to do then to…
Category: Quick Start
Introduction to Minstall
One of my favourite quickstart scripts is Minstall, a helpful script to use on your freshly installed VPS. With Minstall you can remove unnecessary services and install commonly used services, it will let you start with a low-mem using VPS. The readme…
Use Speedtest.net from your vps without using vnc
Easy add IP to be blocked by iptables
A question was asked over at www.lowendtalk.com on how to add ip addresses to iptables from a textfile. AnthonySmith found a simple but still effective way to solve this. The entry that were discussed was
1 2 |
iptables -A INPUT -s XXX.XXX.XXX.XXX -p udp -m udp --dport 28960:28965 -j DROP |
Let’s break it all…