Ubuntu additonal IP addresses not available after hard reboot – slicehost

Ubuntu additonal IP ...

Log in using ssh (putty) sudo ifup eth0:1 sudo ifup eth0:2 sudo ifup eth0:3 … and so on.
T-Mobile Broadband USB Stick 610 (Huawei E1750) Ubuntu

T-Mobile Broadband U...

The T-Mobile Broadband USB Stick 610 unlimited access gift pack for £44.99 has to be the cheapest way to get online anywhere for the next 3 months! Works with Ubuntu after you’ve run this script.
Block countries using apache mod geo-ip / List of countries by fraud risk

Block countries usin...

Install mod_geoip sudo apt-get install libapache2-mod-geoip The installation process creates a file /etc/apache2/mods-available/geoip.conf , ignore it and put the config info in apache2.conf , it will make it easier to find later. Find these lines in /etc/apache2/apache2.conf <Files...
Ubuntu start Xpay4 at boot

Ubuntu start Xpay4 a...

Add the following lines to /etc/rc.local cd /usr/local/xpay4 java -jar Xpay4.jar If /etc/rc.local doesn’t exist just create it.
Write CPU / Memory usage to log file every hour

Write CPU / Memory u...

Add this cron job … 0 * * * * top -n1 -b | head -4 >> /var/www/askmatt.co.uk/top.txt output … Your browser does not support iframes.
Quickly change a colour in a stylesheet from the command line

Quickly change a col...

Change all instances of ‘#ebbc58′ to ‘#ffff33′ in all files ending .css in the directory ‘/var/www/skin/frontend/default/default/’ and all its sub-directories. find /var/www/skin/frontend/default/default/ -name “*.css” -print | xargs...