Rclone
Install Rclone
1curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip2unzip rclone-current-linux-amd64.zip3cd rclone-*-linux-amd644cp rclone ~/.local/bin/5chmod 755 ~/.local/bin/rclone
Use Rclone to sync the data
1rclone mount name:path path \2 --daemon \3 --vfs-cache-mode full \4 --vfs-cache-max-size 20G \5 --vfs-cache-max-age 24h \6 --cache-dir /path/rclone_cache \7 --no-modtime \8 --transfers 4 \9 --buffer-size 16M \10 --attr-timeout 5m \11 --dir-cache-time 1h \12 --log-file /path/rclone_mount.log \13 --log-level DEBUG
Unmount the mount point
1fusermount -u path
Check size of the mount point
1rclone ncdu path