This tutorial is originally written by: Remy Van Elst @ www.raymii.org (original post here) This tutorial will show you how you can back up your website and database with Duplicity. Duplicity is a very useful tool to make remote unassisted backups. The…
Author: mikho
Owner of this site, swedish with a interest in educate both myself and others.
How To Recover/Reset a forgotten MySQL root password
How to set up your own distributed, redundant, and encrypted storage grid in a few easy steps – Tahoe-LAFS
Backup your files to dropbox using BASH
Download the dropbox-uploader script by Andrea Fabrizi from github as root
1 2 3 |
wget https://raw.github.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh --no-check-certificate |
make it executable and run it
1 2 3 4 |
chmod +x dropbox_uploader.sh ./dropbox_uploader.sh |
when executed for the first time you will be prompted with some some instructions to be able to upload/download to your…
Mount your Box.com account to your vps and use it for backups
Block an entire Country with iptables
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…
Creating random passwords for your customers in WHMCS
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…