21/03/2021

Le cloud avec rclone

Installation de rclone

apt install rclone fuse

Création d’une connexion

rclone config

Ensuite suivez les instruction (ça dépend du cloud)

Monter un dossier

mkdir /mnt/onedrive
rclone --vfs-cache-mode writes mount onedrive:/ /mnt/onedrive

Attention ça peut mettre pas mal de temps si vous manquez de ram

Pour démonter le dossier

fusermount -u /mnt/onedrive

Synchroniser un dossier

rclone sync --verbose --ignore-existing --exclude={excludedfile.txt, file2} local-path/ onedrive:/remove-path/

crontab

crontab -e
5 18 * * * rclone sync --verbose --ignore-existing --exclude={excludedfile.txt, file2} local-path/ onedrive:/remove-path/ >> /var/log/rclone.log 2>&1

Tous les jours à 18:05