DesktopClient Zuwachssicherung

Moin,

31.0.8 bei Hetzner. Desktop-Client 3.1.0…AppImage chic verbunden. Sync funktioniert auch.

Mein Problem: ich will ne Zuwachssicherung einrichten. Lokaler Ordner => Nextcloud.Ordner

Lokal löschen, löscht auf Nextcloud NICHT.

Früher(?) gab es da wohl mal Optionen, aber hier finde ich nicht annähernd, was dazu passt. Wer ne Idee?

Servus @wurzelmuepf, willkommen zum Nextcloud Community Forum :waving_hand:

du möchtest also eine inkrementelle kopie deiner lokalen daten auf eine nextcloud instanz via webdav?
soweit ich weiß geht das nicht mit dem DesktopClient, könnte mich aber irren?

das hier könnte für dich eine lösung sein Using syncthing to backup data folder - #2 by scubamuc. mit rclone kannst du auch lokale dateien/verzeichnisse inkrementell per webdav in deine Nextcloud instanz kopieren.

Beispiel copy script:

  #!/bin/bash

## Copy documents local --> NEXTCLOUD-01

    /usr/bin/rclone copy /home/$USER/Dokumente NEXTCLOUD-01:/Dokumente -P ; 

exit

Beispiel sync script:

  #!/bin/bash

## Sync documents local --> NEXTCLOUD-01

    /usr/bin/rclone sync /home/$USER/Dokumente NEXTCLOUD-01:/Dokumente -P ; 

exit

Beispiel bidirectional sync script:

  #!/bin/bash

## Sync documents local <--> NEXTCLOUD-01

    /usr/bin/rclone bisync /home/$USER/Dokumente NEXTCLOUD-01:/Dokumente -P ; 

exit

IMPORTANT

Synchronisation is NOT Backup!!

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.