Archive data via rclone limiting the bandwidth
This rsync command will archive one folder to another without consuming more than 5MB/s of your bandwith
Archiving a large media library to the cloud can easily saturate your connection if you let it run unrestricted, so capping the transfer speed keeps the rest of your network usable while it works in the background.
rclone copy -c -v \
--copy-links \
--exclude='_UNPACK' \
--min-age 5m --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" \
--drive-stop-on-upload-limit \
--transfers=4 \
--checkers=4 \
--stats 5s \
--bwlimit 8M
--size-only \
--log-file="/volume1/rclone/rclone.log" \
/volume1/media/torrents GDrive1Crypt:/if you need to target directly a subfolder of your mounted GDrive1Crypt, replace GDrive1Crypt:/ by GDrive1Crypt:your-folder-name.
Leave it running overnight or throttled during the day, either way your bandwidth stays predictable for everything else on the network.
Looking for help?
If you are looking for some help or want a quick chat, please head over to the Discord Community!