I'm using Déjà Dup to backup my disks into a cloud disk, but it's not accessible 24/7 (long story). When it tries to connect and it's not accessible, Déjà Dup gives an error, and in the next time it cannot connect again (I suppose the file system disables this cloud disk).
Is there a way to setup on which time Déjà Dup makes the automatic backup? Where are the cron job files/tasks? May I changed them manually?
First: Typing
deja-dub --backup
in a terminal starts backing up immediately.Second: Open up a terminal and type
crontab -e
, press enter and then type2
to select the nano editor. Enter again and now you have text something like;So far I understand should following command
0 12 * * * deja-dup --backup
written without the#
at start, start the backup at 12 a.m (I suppose a 24h system here).More examples:
5 12 * * * deja-dup --backup
: Start backup at 12:05 a.m* 12 5 * * deja-dup --backup
: Start backup 5th of every month at 12 a.m* 6 * 2 * deja-dup --backup
: Start backup at 6 a.m in FrebruaryRefer to this askubuntu question to have a better idea about cron jobs in ubuntu