How To Sync Box to S3 Using rclone
erics, October 3rd, 2019
To sync various cloud resources, use the excellent cli tool rclone from https://rclone.org/docs/ For this use case, the need was to sync from Box to an AWS S3 bucket. Install rclone:
1 |
curl https://rclone.org/install.sh | sudo bash |
Configure both S3 and Box – for remote name labels I just used “S3” and “Box”:
1 |
rclone config |
Validate Access and Functionality:
1 2 |
rclone lsd Box: rclone lsd S3: |
Perform […]