Skip Avira’s Free Antivirus reboot request on updates

If you’re using Avira’s Free antivirus and are a mad computer user like me that never reboots his computer (unless something blows up), you might have noticed that Avira periodically updates its program (beside the virus definitions) and asks for a system restart to complete this.

Using rsync to syncronize files between two systems

Rsync is a very handy tool at synchronizing the contents of two folders/directories.

And while being great for local folders, it also works remotely, via SSH, thanks to the -e ssh parameter: # rsync -ave ssh sourceserver:/home/user/ /home/user will sync /home/user from the sourceserver with /home/user on the local machine.