wiki:run_borgbackup_each_day
This is an old revision of the document!
Table of Contents
Run anacron in user mode
You can set up a separate anacron instance to run in user mode:
1. Create a .anacron folder in your home directory and in it two subfolders, etc and spool:
mkdir -p ~/.anacron/{etc,spool}
2. Create a new file ~/.anacron/etc/anacrontab with contents similar to the following:
# /etc/anacrontab: configuration file for anacron # See anacron(8) and anacrontab(5) for details. SHELL=/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin # this will run test.sh script once each day # period delay job-identifier command 1 10 testjob test.sh
3. Add the following line to your crontab using crontab -e
:
@hourly /usr/sbin/anacron -s -t $HOME/.anacron/etc/anacrontab -S $HOME/.anacron/spool
Tested on
- Xubuntu 20.04
- Kde Neon 20.04
See also
References
wiki/run_borgbackup_each_day.1620917529.txt.gz · Last modified: 2021/05/13 14:52 by antisa