Restic backup
Login to OMV as root user
Run commands in terminal
apt install restic
restic self-update
restic -r /srv/TOdisk/WhereToStoreBackups init
enter password
enter password
save password in file /password.txt
echo Secret>/password.txt
Make first backup of OpenMediaVault system disk
restic -r /srv/TOdisk/WhereToStoreBackups backup / -x --compression max -p /password.txt
Backup Done
Automate backups
Go to System -> Scheduled Tasks
Create new task
User root
Command to execute
/usr/bin/restic -r /srv/TOdisk/WhereToStoreBackups backup / -x --compression max -p /password.txt