mirror of https://github.com/rclone/rclone.git
FAQ entry about copying the config file
This commit is contained in:
parent
f8b7eaec93
commit
6530b07cde
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "FAQ"
|
title: "FAQ"
|
||||||
description: "Rclone Frequently Asked Questions"
|
description: "Rclone Frequently Asked Questions"
|
||||||
date: "2015-06-06"
|
date: "2015-08-27"
|
||||||
---
|
---
|
||||||
|
|
||||||
Frequently Asked Questions
|
Frequently Asked Questions
|
||||||
|
@ -13,6 +13,31 @@ Yes they do. All the rclone commands (eg `sync`, `copy` etc) will
|
||||||
work on all the remote storage systems.
|
work on all the remote storage systems.
|
||||||
|
|
||||||
|
|
||||||
|
### 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).
|
||||||
|
|
||||||
|
|
||||||
### Can rclone sync directly from drive to s3 ###
|
### Can rclone sync directly from drive to s3 ###
|
||||||
|
|
||||||
Rclone can sync between two remote cloud storage systems just fine.
|
Rclone can sync between two remote cloud storage systems just fine.
|
||||||
|
|
Loading…
Reference in New Issue