2015-07-30 21:26:29 +02:00
|
|
|
---
|
|
|
|
title: "FAQ"
|
|
|
|
description: "Rclone Frequently Asked Questions"
|
2015-08-27 20:46:28 +02:00
|
|
|
date: "2015-08-27"
|
2015-07-30 21:26:29 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
Frequently Asked Questions
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
### Do all cloud storage systems support all rclone commands ###
|
|
|
|
|
|
|
|
Yes they do. All the rclone commands (eg `sync`, `copy` etc) will
|
|
|
|
work on all the remote storage systems.
|
|
|
|
|
|
|
|
|
2015-08-27 20:46:28 +02:00
|
|
|
### Can I copy the config from one machine to another ###
|
|
|
|
|
|
|
|
Sure! Rclone stores all of its config in a single file. If you want
|
|
|
|
to find this file, the simplest way is to run `rclone -h` and look at
|
|
|
|
the help for the `--config` flag which will tell you where it is. Eg,
|
|
|
|
|
|
|
|
```
|
|
|
|
$ rclone -h
|
|
|
|
Sync files and directories to and from local and remote object stores - v1.18.
|
|
|
|
[snip]
|
|
|
|
Options:
|
|
|
|
--bwlimit=0: Bandwidth limit in kBytes/s, or use suffix k|M|G
|
|
|
|
--checkers=8: Number of checkers to run in parallel.
|
|
|
|
-c, --checksum=false: Skip based on checksum & size, not mod-time & size
|
|
|
|
--config="/home/user/.rclone.conf": Config file.
|
|
|
|
[snip]
|
|
|
|
```
|
|
|
|
|
|
|
|
So in this config the config file can be found in
|
|
|
|
`/home/user/.rclone.conf`.
|
|
|
|
|
|
|
|
Just copy that to the equivalent place in the destination (run `rclone
|
|
|
|
-h` above again on the destination machine if not sure).
|
|
|
|
|
|
|
|
|
2015-07-30 21:26:29 +02:00
|
|
|
### Can rclone sync directly from drive to s3 ###
|
|
|
|
|
|
|
|
Rclone can sync between two remote cloud storage systems just fine.
|
|
|
|
|
|
|
|
Note that it effectively downloads the file and uploads it again, so
|
|
|
|
the node running rclone would need to have lots of bandwidth.
|
|
|
|
|
|
|
|
The syncs would be incremental (on a file by file basis).
|
|
|
|
|
|
|
|
Eg
|
|
|
|
|
2015-08-17 18:14:05 +02:00
|
|
|
rclone sync drive:Folder s3:bucket
|
2015-07-30 21:26:29 +02:00
|
|
|
|
|
|
|
|
2015-08-16 15:07:13 +02:00
|
|
|
### 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.
|
2015-08-31 13:47:07 +02:00
|
|
|
|
|
|
|
### Why doesn't rclone support partial transfers / binary diffs like rsync? ###
|
|
|
|
|
|
|
|
Rclone stores each file you transfer as a native object on the remote
|
|
|
|
cloud storage system. This means that you can see the files you
|
|
|
|
upload as expected using alternative access methods (eg using the
|
|
|
|
Google Drive web interface). There is a 1:1 mapping between files on
|
|
|
|
your hard disk and objects created in the cloud storage system.
|
|
|
|
|
|
|
|
Cloud storage systems (at least none I've come across yet) don't
|
|
|
|
support partially uploading an object. You can't take an existing
|
|
|
|
object, and change some bytes in the middle of it.
|
|
|
|
|
|
|
|
It would be possible to make a sync system which stored binary diffs
|
|
|
|
instead of whole objects like rclone does, but that would break the
|
|
|
|
1:1 mapping of files on your hard disk to objects in the remote cloud
|
|
|
|
storage system.
|
|
|
|
|
|
|
|
All the cloud storage systems support partial downloads of content, so
|
|
|
|
it would be possible to make partial downloads work. However to make
|
|
|
|
this work efficiently this would require storing a significant amount
|
|
|
|
of metadata, which breaks the desired 1:1 mapping of files to objects.
|
2015-09-02 09:33:18 +02:00
|
|
|
|
|
|
|
### Can rclone do bi-directional sync? ###
|
|
|
|
|
|
|
|
No, not at present. rclone only does uni-directional sync from A ->
|
|
|
|
B. It may do in the future though since it has all the primitives - it
|
|
|
|
just requires writing the algorithm to do it.
|
2015-10-30 12:06:11 +01:00
|
|
|
|
|
|
|
### Can I use rclone with an HTTP proxy? ###
|
|
|
|
|
|
|
|
Yes. rclone will use the environment variables `HTTP_PROXY`,
|
|
|
|
`HTTPS_PROXY` and `NO_PROXY`, similar to cURL and other programs.
|
|
|
|
|
|
|
|
`HTTPS_PROXY` takes precedence over `HTTP_PROXY` for https requests.
|
|
|
|
|
|
|
|
The environment values may be either a complete URL or a "host[:port]",
|
|
|
|
in which case the "http" scheme is assumed.
|
|
|
|
|
|
|
|
The `NO_PROXY` allows you to disable the proxy for specific hosts.
|
|
|
|
Hosts must be comma separated, and can contain domains or parts.
|
|
|
|
For instance "foo.com" also matches "bar.foo.com".
|
2015-11-05 19:07:37 +01:00
|
|
|
|
|
|
|
### Rclone gives x509: failed to load system roots and no roots provided error ###
|
|
|
|
|
|
|
|
This means that `rclone` can't file the SSL root certificates. Likely
|
|
|
|
you are running `rclone` on a NAS with a cut-down Linux OS.
|
|
|
|
|
|
|
|
Rclone (via the Go runtime) tries to load the root certificates from
|
|
|
|
these places on Linux.
|
|
|
|
|
|
|
|
"/etc/ssl/certs/ca-certificates.crt", // Debian/Ubuntu/Gentoo etc.
|
|
|
|
"/etc/pki/tls/certs/ca-bundle.crt", // Fedora/RHEL
|
|
|
|
"/etc/ssl/ca-bundle.pem", // OpenSUSE
|
|
|
|
"/etc/pki/tls/cacert.pem", // OpenELEC
|
|
|
|
|
|
|
|
So doing something like this should fix the problem. It also sets the
|
|
|
|
time which is important for SSL to work properly.
|
|
|
|
|
|
|
|
```
|
|
|
|
mkdir -p /etc/ssl/certs/
|
|
|
|
curl -o /etc/ssl/certs/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt
|
|
|
|
ntpclient -s -h pool.ntp.org
|
|
|
|
```
|