1. Create CloudSafe account and setup WebDav and mount it to a folder (i.e. CloudSafe)
2. Create the backup scrip:
nano /home/scripts/backup_script.sh
#!/bin/sh
# Daily Data Backup
zip -r /Compressed/home.zip /home/ && rsync -av /Compressed/ /mnt/CloudSafe
Make it executable:
chmod +x /home/scripts/backup_script.sh
Now setup cron:
crontab -e
and schedule it to run at for a 11:30 PM:
30 23 * * * /home/script/backup_script.sh