...
Code Block | ||
---|---|---|
| ||
rclone copy --transfers 368 --progress --checksum --checkers 488 --timeout 0 source-dir/ rdm3:dest_dir/ |
The following options are provided to this command to upload the files.
--transfers 368
36 8 concurrent transfers are performed.
--progress
Show progress during transfer
--checksum
skip files if they already exist, based on checksum and size.
By default the files are skipped based on modification time and size.
--checkers 488
This option increases the number of tasks that are checking to see if the file already exists on the remote. This value should be greater than transfers to make sure that transfers is kept at capacity.
--timeout 0
This is the allowed Input Output idle timeout. By default this is 5 minutes.
source-dir/
The local directory from which you want to push the files to UQRDM,
ie C:\tmp\images\20200103\ or external drive G:\images\20200103\ (Windows)
or /tmp/images/20200103 (Mac / Linux)
rdm3:dest_dir/
rdm3 is the connection name that was setup for Rclone according to/wiki/spaces/TERNSup/pages/1344274476
dest_dir
The directory where you want to upload the files to in UQRDM
Edit access to the UQRDM folder is required to upload files.
...