=========================== borg backup =========================== To issue borg commands, prepare your shell and set some env vars:: $ sudo su # cd /root/backup # . env-.... afterwards you can use borg commands without entering the passphrase (stored in /root/backup/.borg_passphrase). # borg info $REPO # general infos about the repo state # borg list $REPO # list all archives stored # borg list $REPO::20200116-0116 # list a certain archive (all files and dirs) # borg check $REPO # check repository integrity # borg delete 20200116-0116 # delete the given archive # borg mount $REPO /mnt # mount repo on /mnt # borg umount /mnt # unmount repo