FAQ entry about using rclone from multiple places - fixes #78

This commit is contained in:
Nick Craig-Wood 2015-08-16 14:07:13 +01:00
parent 8140869767
commit e2f4d7b5e3
1 changed files with 21 additions and 0 deletions

View File

@ -27,3 +27,24 @@ Eg
rclone sync drive:Folder s3:bucket
### Using rclone from multiple locations at the same time ###
You can use rclone from multiple places at the same time if you choose
different subdirectory for the output, eg
```
Server A> rclone sync /tmp/whatever remote:ServerA
Server B> rclone sync /tmp/whatever remote:ServerB
```
If you sync to the same directory then you should use rclone copy
otherwise the two rclones may delete each others files, eg
```
Server A> rclone copy /tmp/whatever remote:Backup
Server B> rclone copy /tmp/whatever remote:Backup
```
The file names you upload from Server A and Server B should be
different in this case, otherwise some file systems (eg Drive) may
make duplicates.