RClone#
Getting Started#
Linux#
Install rclone:
sudo apt install -y rcloneMake directory within user profile directory for configuration:
mkdir -p ~/.config/rcloneMake directory within user profile to synchronise:
mkdir -p ~/r2syncCreate rclone configuration follow at
~/.config/rclone/rclone.confand populate with the following contents:
[r2]
type = s3
provider = Cloudflare
access_key_id = d54aa34c052dc90b82c03574917b2f8d
secret_access_key = 513c3e0379b4f78e5868ebb0ba500e6d206c2a5b83ceeb27361d29cca0a3a254
endpoint = https://1c1bf9bc6364b72cd9d9948306261c0e.r2.cloudflarestorage.com
acl = private
[r2sync]
type = alias
r2:r2sync
Synchronise content using rclone:
rclone sync --daemon r2sync:/ ~/r2sync
Apple OS X/Windows#
Refer to Mountain Duck documentation.