Duplicati Nextcloud Backup Script

When Duplicati backups and restores Nextcloud files, we want to enable maintenance mode. However by default, Duplicati runs scripts on every operation including when it lists the restore folders, which we don’t want. The following scripts prevents Duplicati from running the script when it’s only listing the restore folders. NextcloudOn.sh Script to turn on Nextcloud Maintenance mode #!/bin/bash if [ "%DUPLICATI__OPERATIONNAME%" != "List" ] then nextcloud.occ maintenance:mode --on fi exit 0 NextcloudOff....

February 13, 2023 · 1 min · 130 words · Wei Wang

Duplicati Setup on Ubuntu

Package Repository Setup Adding Mono Repository Add the Mono repository to your system as Duplicati requires mono in order to work. sudo apt install gnupg ca-certificates sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list sudo apt update sudo apt install mono-devel gtk-sharp2 Downloading Duplicati Get the url of the latest version of Duplicat from this link. Run wget to download the file. Replace the link below with the link you got from above....

February 13, 2023 · 3 min · 481 words · Wei Wang