Table of Contents

Install rclone

https://rclone.org/install/ curl https://rclone.org/install.sh | sudo bash

How to use

Sync on local drive

rclone sync -P --transfers=16 --checkers=8 /media/source /home/data/destination
rclone copy -P --stats-unit bits --transfers=16 --checkers=8 vis-iom:/home/vissie/test /home/vissie/test/

-P Will show progress –transfers=16 Will transfer 16 files at once –checkers=8 With 8 checkers –stats-unit bits Can be bites or bytes

Mount to OneDrive

https://www.linuxuprising.com/2018/07/how-to-mount-onedrive-in-linux-using.html

Useage tips

Copy with wild cards

rclone copy /local/path/witch\ escaped/space/ --include "/Test*" Cloud:cloud/path --dry-run