rclone/README.md

211 lines
5.4 KiB
Markdown
Raw Normal View History

2013-06-27 21:00:01 +02:00
Rclone
======
[![Logo](http://rclone.org/img/rclone-120x120.png)](http://rclone.org/)
2013-06-27 21:00:01 +02:00
Sync files and directories to and from
* Google Drive
* Amazon S3
* Openstack Swift / Rackspace cloud files / Memset Memstore
2013-06-27 21:00:01 +02:00
* The local filesystem
2014-03-15 18:39:56 +01:00
Features
2014-03-15 18:39:56 +01:00
* MD5SUMs checked at all times for file integrity
* Timestamps preserved on files
* Partial syncs supported on a whole file basis
* Copy mode to just copy new/changed files
* Sync mode to make a directory identical
* Check mode to check all MD5SUMs
* Can sync to and from network, eg two different Drive accounts
See the Home page for more documentation and configuration walkthroughs.
* http://rclone.org/
Install
-------
2013-06-27 21:00:01 +02:00
Rclone is a Go program and comes as a single binary file.
Download the relevant binary from
2014-03-15 18:39:56 +01:00
* http://www.craig-wood.com/nick/pub/rclone/
Or alternatively if you have Go installed use
2013-06-27 21:00:01 +02:00
go get github.com/ncw/rclone
and this will build the binary in `$GOPATH/bin`.
You can then modify the source and submit patches.
2014-03-15 18:39:56 +01:00
Configure
---------
First you'll need to configure rclone. As the object storage systems
have quite complicated authentication these are kept in a config file
`.rclone.conf` in your home directory by default. (You can use the
-config option to choose a different config file.)
The easiest way to make the config is to run rclone with the config
option, Eg
2014-03-16 01:28:32 +01:00
rclone config
2014-03-15 18:39:56 +01:00
Usage
-----
2014-03-15 18:39:56 +01:00
Rclone syncs a directory tree from local to remote.
Its basic syntax is like this
Syntax: [options] subcommand <parameters> <parameters...>
2014-03-16 01:28:32 +01:00
See below for how to specify the source and destination paths.
Subcommands
-----------
2014-03-15 18:39:56 +01:00
2014-03-27 18:31:57 +01:00
rclone copy source:path dest:path
2014-03-15 18:39:56 +01:00
Copy the source to the destination. Doesn't transfer
unchanged files, testing first by modification time then by
MD5SUM. Doesn't delete files from the destination.
2014-03-27 18:31:57 +01:00
rclone sync source:path dest:path
2014-03-15 18:39:56 +01:00
Sync the source to the destination. Doesn't transfer
unchanged files, testing first by modification time then by
MD5SUM. Deletes any files that exist in source that don't
exist in destination. Since this can cause data loss, test
first with the -dry-run flag.
2014-03-27 18:31:57 +01:00
rclone ls [remote:path]
2014-03-15 18:39:56 +01:00
List all the objects in the the path.
2014-03-27 18:31:57 +01:00
rclone lsd [remote:path]
2014-03-15 18:39:56 +01:00
List all directoryes/objects/buckets in the the path.
2014-03-27 18:31:57 +01:00
rclone mkdir remote:path
2014-03-15 18:39:56 +01:00
Make the path if it doesn't already exist
2014-03-27 18:31:57 +01:00
rclone rmdir remote:path
2014-03-15 18:39:56 +01:00
Remove the path. Note that you can't remove a path with
objects in it, use purge for that.
2014-03-27 18:31:57 +01:00
rclone purge remote:path
2014-03-15 18:39:56 +01:00
Remove the path and all of its contents.
2014-03-27 18:31:57 +01:00
rclone check source:path dest:path
2014-03-15 18:39:56 +01:00
Checks the files in the source and destination match. It
compares sizes and MD5SUMs and prints a report of files which
don't match. It doesn't alter the source or destination.
General options:
2014-03-16 01:28:32 +01:00
* `-config` Location of the config file
* `-transfers=4`: Number of file transfers to run in parallel.
* `-checkers=8`: Number of MD5SUM checkers to run in parallel.
* `-dry-run=false`: Do a trial run with no permanent changes
* `-modify-window=1ns`: Max time difference to be considered the same - this is automatically set usually
* `-quiet=false`: Print as little stuff as possible
* `-stats=1m0s`: Interval to print stats
* `-verbose=false`: Print lots more stuff
2014-03-15 18:39:56 +01:00
Developer options:
2014-03-16 01:28:32 +01:00
* `-cpuprofile=""`: Write cpu profile to file
2014-03-15 18:39:56 +01:00
Local Filesystem
----------------
Paths are specified as normal filesystem paths, so
rclone sync /home/source /tmp/destination
Will sync source to destination
Swift / Rackspace cloudfiles / Memset Memstore
----------------------------------------------
2014-03-27 18:31:57 +01:00
Paths are specified as remote:container (or remote: for the `lsd`
2014-03-16 01:28:32 +01:00
command.)
2014-03-15 18:39:56 +01:00
2014-03-16 01:28:32 +01:00
So to copy a local directory to a swift container called backup:
2014-03-15 18:39:56 +01:00
2014-03-27 18:31:57 +01:00
rclone sync /home/source swift:backup
2014-03-15 18:39:56 +01:00
The modified time is stored as metadata on the object as
2014-03-16 01:28:32 +01:00
`X-Object-Meta-Mtime` as floating point since the epoch.
2014-03-15 18:39:56 +01:00
This is a defacto standard (used in the official python-swiftclient
amongst others) for storing the modification time (as read using
os.Stat) for an object.
Amazon S3
---------
2014-03-27 18:31:57 +01:00
Paths are specified as remote:bucket
2014-03-15 18:39:56 +01:00
So to copy a local directory to a s3 container called backup
2014-03-27 18:31:57 +01:00
rclone sync /home/source s3:backup
2014-03-15 18:39:56 +01:00
The modified time is stored as metadata on the object as
2014-03-16 01:28:32 +01:00
`X-Amz-Meta-Mtime` as floating point since the epoch.
2014-03-15 18:39:56 +01:00
Google drive
------------
2014-03-27 18:31:57 +01:00
Paths are specified as drive:path Drive paths may be as deep as required.
2014-03-15 18:39:56 +01:00
The initial setup for drive involves getting a token from Google drive
which you need to do in your browser. The `rclone config` walks you
through it.
2014-03-15 18:39:56 +01:00
To copy a local directory to a drive directory called backup
2014-03-27 18:31:57 +01:00
rclone copy /home/source drv:backup
Google drive stores modification times accurate to 1 ms.
License
-------
This is free software under the terms of MIT the license (check the
COPYING file included in this package).
2014-03-15 18:39:56 +01:00
Bugs
----
* Doesn't sync individual files yet, only directories.
* Drive: Sometimes get: Failed to copy: Upload failed: googleapi: Error 403: Rate Limit Exceeded
* quota is 100.0 requests/second/user
* Empty directories left behind with Local and Drive
* eg purging a local directory with subdirectories doesn't work
2014-03-15 18:39:56 +01:00
Contact and support
-------------------
The project website is at:
* https://github.com/ncw/rclone
There you can file bug reports, ask for help or contribute patches.
Authors
-------
* Nick Craig-Wood <nick@craig-wood.com>
Contributors
------------
* Your name goes here!