Free Online Backup howto
From MEPIS Documentation Wiki
Disclaimer; this is a experimental work in progress. - don't blame me if it breaks your system.
This how to should back up your home directory to a free gmail account.
First get the software gmailfs + duplicity by typing into the command line
su 'yourrootpassword' apt-get install gmailfs duplicity
Getting a gmail account is also easy;
https://www.google.com/accounts/CreateAccount
cd /Desktop
create the script file
kedit backup.sh
Paste in the following after changing the gmailuser + gmailpass SomeLongGeneratedHardToCrackKey + and name of your /home/username folder to your actual details.
#!/bin/sh sudo mount -t gmailfs /usr/local/bin/gmailfs.py /mnt/ -o username=gmailuser,password=gmailpass,fsname=zOlRRa export PASSPHRASE=SomeLongGeneratedHardToCrackKey duplicity /home/username file:///mnt/ unset PASSPHRASE umount /mnt/
Click 'save'
make it executable
chmod 700 backup.sh
then to run it
./backup.sh
either run the ./backup.sh command as often as you like or to schedule it to run automatically check here; https://help.ubuntu.com/community/DuplicityBackupHowto