rclone/MANUAL.html

14674 lines
772 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Nick Craig-Wood" />
<title>rclone(1) User Manual</title>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
</style>
</head>
<body>
<header>
<h1 class="title">rclone(1) User Manual</h1>
<p class="author">Nick Craig-Wood</p>
<p class="date">Jun 15, 2019</p>
</header>
<h1 id="rclone">Rclone</h1>
<p><a href="https://rclone.org/"><img src="https://rclone.org/img/rclone-120x120.png" alt="Logo" /></a></p>
<p>Rclone is a command line program to sync files and directories to and from:</p>
<ul>
<li>Alibaba Cloud (Aliyun) Object Storage System (OSS)</li>
<li>Amazon Drive (<a href="/amazonclouddrive/#status">See note</a>)</li>
<li>Amazon S3</li>
<li>Backblaze B2</li>
<li>Box</li>
<li>Ceph</li>
<li>DigitalOcean Spaces</li>
<li>Dreamhost</li>
<li>Dropbox</li>
<li>FTP</li>
<li>Google Cloud Storage</li>
<li>Google Drive</li>
<li>HTTP</li>
<li>Hubic</li>
<li>Jottacloud</li>
<li>IBM COS S3</li>
<li>Koofr</li>
<li>Memset Memstore</li>
<li>Mega</li>
<li>Microsoft Azure Blob Storage</li>
<li>Microsoft OneDrive</li>
<li>Minio</li>
<li>Nextcloud</li>
<li>OVH</li>
<li>OpenDrive</li>
<li>Openstack Swift</li>
<li>Oracle Cloud Storage</li>
<li>ownCloud</li>
<li>pCloud</li>
<li>put.io</li>
<li>QingStor</li>
<li>Rackspace Cloud Files</li>
<li>rsync.net</li>
<li>Scaleway</li>
<li>SFTP</li>
<li>Wasabi</li>
<li>WebDAV</li>
<li>Yandex Disk</li>
<li>The local filesystem</li>
</ul>
<p>Features</p>
<ul>
<li>MD5/SHA1 hashes checked at all times for file integrity</li>
<li>Timestamps preserved on files</li>
<li>Partial syncs supported on a whole file basis</li>
<li><a href="https://rclone.org/commands/rclone_copy/">Copy</a> mode to just copy new/changed files</li>
<li><a href="https://rclone.org/commands/rclone_sync/">Sync</a> (one way) mode to make a directory identical</li>
<li><a href="https://rclone.org/commands/rclone_check/">Check</a> mode to check for file hash equality</li>
<li>Can sync to and from network, eg two different cloud accounts</li>
<li><a href="https://rclone.org/crypt/">Encryption</a> backend</li>
<li><a href="https://rclone.org/cache/">Cache</a> backend</li>
<li><a href="https://rclone.org/union/">Union</a> backend</li>
<li>Optional FUSE mount (<a href="https://rclone.org/commands/rclone_mount/">rclone mount</a>)</li>
<li>Multi-threaded downloads to local disk</li>
<li>Can <a href="https://rclone.org/commands/rclone_serve/">serve</a> local or remote files over <a href="https://rclone.org/commands/rclone_serve_http/">HTTP</a>/<a href="https://rclone.org/commands/rclone_serve_webdav/">WebDav</a>/<a href="https://rclone.org/commands/rclone_serve_ftp/">FTP</a>/<a href="https://rclone.org/commands/rclone_serve_sftp/">SFTP</a>/<a href="https://rclone.org/commands/rclone_serve_dlna/">dlna</a></li>
</ul>
<p>Links</p>
<ul>
<li><a href="https://rclone.org/">Home page</a></li>
<li><a href="https://github.com/rclone/rclone">GitHub project page for source and bug tracker</a></li>
<li><a href="https://forum.rclone.org">Rclone Forum</a></li>
<li><a href="https://rclone.org/downloads/">Downloads</a></li>
</ul>
<h1 id="install">Install</h1>
<p>Rclone is a Go program and comes as a single binary file.</p>
<h2 id="quickstart">Quickstart</h2>
<ul>
<li><a href="https://rclone.org/downloads/">Download</a> the relevant binary.</li>
<li>Extract the <code>rclone</code> or <code>rclone.exe</code> binary from the archive</li>
<li>Run <code>rclone config</code> to setup. See <a href="https://rclone.org/docs/">rclone config docs</a> for more details.</li>
</ul>
<p>See below for some expanded Linux / macOS instructions.</p>
<p>See the <a href="https://rclone.org/docs/">Usage section</a> of the docs for how to use rclone, or run <code>rclone -h</code>.</p>
<h2 id="script-installation">Script installation</h2>
<p>To install rclone on Linux/macOS/BSD systems, run:</p>
<pre><code>curl https://rclone.org/install.sh | sudo bash</code></pre>
<p>For beta installation, run:</p>
<pre><code>curl https://rclone.org/install.sh | sudo bash -s beta</code></pre>
<p>Note that this script checks the version of rclone installed first and wont re-download if not needed.</p>
<h2 id="linux-installation-from-precompiled-binary">Linux installation from precompiled binary</h2>
<p>Fetch and unpack</p>
<pre><code>curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip
unzip rclone-current-linux-amd64.zip
cd rclone-*-linux-amd64</code></pre>
<p>Copy binary file</p>
<pre><code>sudo cp rclone /usr/bin/
sudo chown root:root /usr/bin/rclone
sudo chmod 755 /usr/bin/rclone</code></pre>
<p>Install manpage</p>
<pre><code>sudo mkdir -p /usr/local/share/man/man1
sudo cp rclone.1 /usr/local/share/man/man1/
sudo mandb </code></pre>
<p>Run <code>rclone config</code> to setup. See <a href="https://rclone.org/docs/">rclone config docs</a> for more details.</p>
<pre><code>rclone config</code></pre>
<h2 id="macos-installation-from-precompiled-binary">macOS installation from precompiled binary</h2>
<p>Download the latest version of rclone.</p>
<pre><code>cd &amp;&amp; curl -O https://downloads.rclone.org/rclone-current-osx-amd64.zip</code></pre>
<p>Unzip the download and cd to the extracted folder.</p>
<pre><code>unzip -a rclone-current-osx-amd64.zip &amp;&amp; cd rclone-*-osx-amd64</code></pre>
<p>Move rclone to your $PATH. You will be prompted for your password.</p>
<pre><code>sudo mkdir -p /usr/local/bin
sudo mv rclone /usr/local/bin/</code></pre>
<p>(the <code>mkdir</code> command is safe to run, even if the directory already exists).</p>
<p>Remove the leftover files.</p>
<pre><code>cd .. &amp;&amp; rm -rf rclone-*-osx-amd64 rclone-current-osx-amd64.zip</code></pre>
<p>Run <code>rclone config</code> to setup. See <a href="https://rclone.org/docs/">rclone config docs</a> for more details.</p>
<pre><code>rclone config</code></pre>
<h2 id="install-from-source">Install from source</h2>
<p>Make sure you have at least <a href="https://golang.org/">Go</a> 1.7 installed. <a href="https://golang.org/dl/">Download go</a> if necessary. The latest release is recommended. Then</p>
<pre><code>git clone https://github.com/rclone/rclone.git
cd rclone
go build
./rclone version</code></pre>
<p>You can also build and install rclone in the <a href="https://github.com/golang/go/wiki/GOPATH">GOPATH</a> (which defaults to <code>~/go</code>) with:</p>
<pre><code>go get -u -v github.com/rclone/rclone</code></pre>
<p>and this will build the binary in <code>$GOPATH/bin</code> (<code>~/go/bin/rclone</code> by default) after downloading the source to <code>$GOPATH/src/github.com/rclone/rclone</code> (<code>~/go/src/github.com/rclone/rclone</code> by default).</p>
<h2 id="installation-with-ansible">Installation with Ansible</h2>
<p>This can be done with <a href="https://github.com/stefangweichinger/ansible-rclone">Stefan Weichingers ansible role</a>.</p>
<p>Instructions</p>
<ol type="1">
<li><code>git clone https://github.com/stefangweichinger/ansible-rclone.git</code> into your local roles-directory</li>
<li>add the role to the hosts you want rclone installed to:</li>
</ol>
<pre><code> - hosts: rclone-hosts
roles:
- rclone</code></pre>
<h2 id="configure">Configure</h2>
<p>First, youll need to configure rclone. As the object storage systems have quite complicated authentication these are kept in a config file. (See the <code>--config</code> entry for how to find the config file and choose its location.)</p>
<p>The easiest way to make the config is to run rclone with the config option:</p>
<pre><code>rclone config</code></pre>
<p>See the following for detailed instructions for</p>
<ul>
<li><a href="https://rclone.org/alias/">Alias</a></li>
<li><a href="https://rclone.org/amazonclouddrive/">Amazon Drive</a></li>
<li><a href="https://rclone.org/s3/">Amazon S3</a></li>
<li><a href="https://rclone.org/b2/">Backblaze B2</a></li>
<li><a href="https://rclone.org/box/">Box</a></li>
<li><a href="https://rclone.org/cache/">Cache</a></li>
<li><a href="https://rclone.org/crypt/">Crypt</a> - to encrypt other remotes</li>
<li><a href="/s3/#digitalocean-spaces">DigitalOcean Spaces</a></li>
<li><a href="https://rclone.org/dropbox/">Dropbox</a></li>
<li><a href="https://rclone.org/ftp/">FTP</a></li>
<li><a href="https://rclone.org/googlecloudstorage/">Google Cloud Storage</a></li>
<li><a href="https://rclone.org/drive/">Google Drive</a></li>
<li><a href="https://rclone.org/http/">HTTP</a></li>
<li><a href="https://rclone.org/hubic/">Hubic</a></li>
<li><a href="https://rclone.org/jottacloud/">Jottacloud</a></li>
<li><a href="https://rclone.org/koofr/">Koofr</a></li>
<li><a href="https://rclone.org/mega/">Mega</a></li>
<li><a href="https://rclone.org/azureblob/">Microsoft Azure Blob Storage</a></li>
<li><a href="https://rclone.org/onedrive/">Microsoft OneDrive</a></li>
<li><a href="https://rclone.org/swift/">Openstack Swift / Rackspace Cloudfiles / Memset Memstore</a></li>
<li><a href="https://rclone.org/opendrive/">OpenDrive</a></li>
<li><a href="https://rclone.org/pcloud/">Pcloud</a></li>
<li><a href="https://rclone.org/qingstor/">QingStor</a></li>
<li><a href="https://rclone.org/sftp/">SFTP</a></li>
<li><a href="https://rclone.org/union/">Union</a></li>
<li><a href="https://rclone.org/webdav/">WebDAV</a></li>
<li><a href="https://rclone.org/yandex/">Yandex Disk</a></li>
<li><a href="https://rclone.org/local/">The local filesystem</a></li>
</ul>
<h2 id="usage">Usage</h2>
<p>Rclone syncs a directory tree from one storage system to another.</p>
<p>Its syntax is like this</p>
<pre><code>Syntax: [options] subcommand &lt;parameters&gt; &lt;parameters...&gt;</code></pre>
<p>Source and destination paths are specified by the name you gave the storage system in the config file then the sub path, eg “drive:myfolder” to look at “myfolder” in Google drive.</p>
<p>You can define as many storage paths as you like in the config file.</p>
<h2 id="subcommands">Subcommands</h2>
<p>rclone uses a system of subcommands. For example</p>
<pre><code>rclone ls remote:path # lists a remote
rclone copy /local/path remote:path # copies /local/path to the remote
rclone sync /local/path remote:path # syncs /local/path to the remote</code></pre>
<h2 id="rclone-config">rclone config</h2>
<p>Enter an interactive configuration session.</p>
<h3 id="synopsis">Synopsis</h3>
<p>Enter an interactive configuration session where you can setup new remotes and manage existing ones. You may also set or remove a password to protect your configuration.</p>
<pre><code>rclone config [flags]</code></pre>
<h3 id="options">Options</h3>
<pre><code> -h, --help help for config</code></pre>
<h3 id="see-also">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
<li><a href="https://rclone.org/commands/rclone_config_create/">rclone config create</a> - Create a new remote with name, type and options.</li>
<li><a href="https://rclone.org/commands/rclone_config_delete/">rclone config delete</a> - Delete an existing remote <name>.</li>
<li><a href="https://rclone.org/commands/rclone_config_dump/">rclone config dump</a> - Dump the config file as JSON.</li>
<li><a href="https://rclone.org/commands/rclone_config_edit/">rclone config edit</a> - Enter an interactive configuration session.</li>
<li><a href="https://rclone.org/commands/rclone_config_file/">rclone config file</a> - Show path of configuration file in use.</li>
<li><a href="https://rclone.org/commands/rclone_config_password/">rclone config password</a> - Update password in an existing remote.</li>
<li><a href="https://rclone.org/commands/rclone_config_providers/">rclone config providers</a> - List in JSON format all the providers and options.</li>
<li><a href="https://rclone.org/commands/rclone_config_show/">rclone config show</a> - Print (decrypted) config file, or the config for a single remote.</li>
<li><a href="https://rclone.org/commands/rclone_config_update/">rclone config update</a> - Update options in an existing remote.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-copy">rclone copy</h2>
<p>Copy files from source to dest, skipping already copied</p>
<h3 id="synopsis-1">Synopsis</h3>
<p>Copy the source to the destination. Doesnt transfer unchanged files, testing by size and modification time or MD5SUM. Doesnt delete files from the destination.</p>
<p>Note that it is always the contents of the directory that is synced, not the directory so when source:path is a directory, its the contents of source:path that are copied, not the directory name and contents.</p>
<p>If dest:path doesnt exist, it is created and the source:path contents go there.</p>
<p>For example</p>
<pre><code>rclone copy source:sourcepath dest:destpath</code></pre>
<p>Lets say there are two files in sourcepath</p>
<pre><code>sourcepath/one.txt
sourcepath/two.txt</code></pre>
<p>This copies them to</p>
<pre><code>destpath/one.txt
destpath/two.txt</code></pre>
<p>Not to</p>
<pre><code>destpath/sourcepath/one.txt
destpath/sourcepath/two.txt</code></pre>
<p>If you are familiar with <code>rsync</code>, rclone always works as if you had written a trailing / - meaning “copy the contents of this directory”. This applies to all commands and whether you are talking about the source or destination.</p>
<p>See the <a href="/docs/#no-traverse">no-traverse</a> option for controlling whether rclone lists the destination directory or not. Supplying this option when copying a small number of files into a large destination can speed transfers up greatly.</p>
<p>For example, if you have many files in /path/to/src but only a few of them change every day, you can to copy all the files which have changed recently very efficiently like this:</p>
<pre><code>rclone copy --max-age 24h --no-traverse /path/to/src remote:</code></pre>
<p><strong>Note</strong>: Use the <code>-P</code>/<code>--progress</code> flag to view real-time transfer statistics</p>
<pre><code>rclone copy source:path dest:path [flags]</code></pre>
<h3 id="options-1">Options</h3>
<pre><code> --create-empty-src-dirs Create empty source dirs on destination after copy
-h, --help help for copy</code></pre>
<h3 id="see-also-1">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-1">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-sync">rclone sync</h2>
<p>Make source and dest identical, modifying destination only.</p>
<h3 id="synopsis-2">Synopsis</h3>
<p>Sync the source to the destination, changing the destination only. Doesnt transfer unchanged files, testing by size and modification time or MD5SUM. Destination is updated to match source, including deleting files if necessary.</p>
<p><strong>Important</strong>: Since this can cause data loss, test first with the <code>--dry-run</code> flag to see exactly what would be copied and deleted.</p>
<p>Note that files in the destination wont be deleted if there were any errors at any point.</p>
<p>It is always the contents of the directory that is synced, not the directory so when source:path is a directory, its the contents of source:path that are copied, not the directory name and contents. See extended explanation in the <code>copy</code> command above if unsure.</p>
<p>If dest:path doesnt exist, it is created and the source:path contents go there.</p>
<p><strong>Note</strong>: Use the <code>-P</code>/<code>--progress</code> flag to view real-time transfer statistics</p>
<pre><code>rclone sync source:path dest:path [flags]</code></pre>
<h3 id="options-2">Options</h3>
<pre><code> --create-empty-src-dirs Create empty source dirs on destination after sync
-h, --help help for sync</code></pre>
<h3 id="see-also-2">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-2">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-move">rclone move</h2>
<p>Move files from source to dest.</p>
<h3 id="synopsis-3">Synopsis</h3>
<p>Moves the contents of the source directory to the destination directory. Rclone will error if the source and destination overlap and the remote does not support a server side directory move operation.</p>
<p>If no filters are in use and if possible this will server side move <code>source:path</code> into <code>dest:path</code>. After this <code>source:path</code> will no longer longer exist.</p>
<p>Otherwise for each file in <code>source:path</code> selected by the filters (if any) this will move it into <code>dest:path</code>. If possible a server side move will be used, otherwise it will copy it (server side if possible) into <code>dest:path</code> then delete the original (if no errors on copy) in <code>source:path</code>.</p>
<p>If you want to delete empty source directories after move, use the delete-empty-src-dirs flag.</p>
<p>See the <a href="/docs/#no-traverse">no-traverse</a> option for controlling whether rclone lists the destination directory or not. Supplying this option when moving a small number of files into a large destination can speed transfers up greatly.</p>
<p><strong>Important</strong>: Since this can cause data loss, test first with the dry-run flag.</p>
<p><strong>Note</strong>: Use the <code>-P</code>/<code>--progress</code> flag to view real-time transfer statistics.</p>
<pre><code>rclone move source:path dest:path [flags]</code></pre>
<h3 id="options-3">Options</h3>
<pre><code> --create-empty-src-dirs Create empty source dirs on destination after move
--delete-empty-src-dirs Delete empty source dirs after move
-h, --help help for move</code></pre>
<h3 id="see-also-3">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-3">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-delete">rclone delete</h2>
<p>Remove the contents of path.</p>
<h3 id="synopsis-4">Synopsis</h3>
<p>Remove the files in path. Unlike <code>purge</code> it obeys include/exclude filters so can be used to selectively delete files.</p>
<p><code>rclone delete</code> only deletes objects but leaves the directory structure alone. If you want to delete a directory and all of its contents use <code>rclone purge</code></p>
<p>Eg delete all files bigger than 100MBytes</p>
<p>Check what would be deleted first (use either)</p>
<pre><code>rclone --min-size 100M lsl remote:path
rclone --dry-run --min-size 100M delete remote:path</code></pre>
<p>Then delete</p>
<pre><code>rclone --min-size 100M delete remote:path</code></pre>
<p>That reads “delete everything with a minimum size of 100 MB”, hence delete all files bigger than 100MBytes.</p>
<pre><code>rclone delete remote:path [flags]</code></pre>
<h3 id="options-4">Options</h3>
<pre><code> -h, --help help for delete</code></pre>
<h3 id="see-also-4">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-4">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-purge">rclone purge</h2>
<p>Remove the path and all of its contents.</p>
<h3 id="synopsis-5">Synopsis</h3>
<p>Remove the path and all of its contents. Note that this does not obey include/exclude filters - everything will be removed. Use <code>delete</code> if you want to selectively delete files.</p>
<pre><code>rclone purge remote:path [flags]</code></pre>
<h3 id="options-5">Options</h3>
<pre><code> -h, --help help for purge</code></pre>
<h3 id="see-also-5">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-5">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-mkdir">rclone mkdir</h2>
<p>Make the path if it doesnt already exist.</p>
<h3 id="synopsis-6">Synopsis</h3>
<p>Make the path if it doesnt already exist.</p>
<pre><code>rclone mkdir remote:path [flags]</code></pre>
<h3 id="options-6">Options</h3>
<pre><code> -h, --help help for mkdir</code></pre>
<h3 id="see-also-6">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-6">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-rmdir">rclone rmdir</h2>
<p>Remove the path if empty.</p>
<h3 id="synopsis-7">Synopsis</h3>
<p>Remove the path. Note that you cant remove a path with objects in it, use purge for that.</p>
<pre><code>rclone rmdir remote:path [flags]</code></pre>
<h3 id="options-7">Options</h3>
<pre><code> -h, --help help for rmdir</code></pre>
<h3 id="see-also-7">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-7">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-check">rclone check</h2>
<p>Checks the files in the source and destination match.</p>
<h3 id="synopsis-8">Synopsis</h3>
<p>Checks the files in the source and destination match. It compares sizes and hashes (MD5 or SHA1) and logs a report of files which dont match. It doesnt alter the source or destination.</p>
<p>If you supply the size-only flag, it will only compare the sizes not the hashes as well. Use this for a quick check.</p>
<p>If you supply the download flag, it will download the data from both remotes and check them against each other on the fly. This can be useful for remotes that dont support hashes or if you really want to check all the data.</p>
<p>If you supply the one-way flag, it will only check that files in source match the files in destination, not the other way around. Meaning extra files in destination that are not in the source will not trigger an error.</p>
<pre><code>rclone check source:path dest:path [flags]</code></pre>
<h3 id="options-8">Options</h3>
<pre><code> --download Check by downloading rather than with hash.
-h, --help help for check
--one-way Check one way only, source files must exist on remote</code></pre>
<h3 id="see-also-8">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-8">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-ls">rclone ls</h2>
<p>List the objects in the path with size and path.</p>
<h3 id="synopsis-9">Synopsis</h3>
<p>Lists the objects in the source path to standard output in a human readable format with size and path. Recurses by default.</p>
<p>Eg</p>
<pre><code>$ rclone ls swift:bucket
60295 bevajer5jef
90613 canole
94467 diwogej7
37600 fubuwic</code></pre>
<p>Any of the filtering options can be applied to this command.</p>
<p>There are several related list commands</p>
<ul>
<li><code>ls</code> to list size and path of objects only</li>
<li><code>lsl</code> to list modification time, size and path of objects only</li>
<li><code>lsd</code> to list directories only</li>
<li><code>lsf</code> to list objects and directories in easy to parse format</li>
<li><code>lsjson</code> to list objects and directories in JSON format</li>
</ul>
<p><code>ls</code>,<code>lsl</code>,<code>lsd</code> are designed to be human readable. <code>lsf</code> is designed to be human and machine readable. <code>lsjson</code> is designed to be machine readable.</p>
<p>Note that <code>ls</code> and <code>lsl</code> recurse by default - use “max-depth 1” to stop the recursion.</p>
<p>The other list commands <code>lsd</code>,<code>lsf</code>,<code>lsjson</code> do not recurse by default - use “-R” to make them recurse.</p>
<p>Listing a non existent directory will produce an error except for remotes which cant have empty directories (eg s3, swift, gcs, etc - the bucket based remotes).</p>
<pre><code>rclone ls remote:path [flags]</code></pre>
<h3 id="options-9">Options</h3>
<pre><code> -h, --help help for ls</code></pre>
<h3 id="see-also-9">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-9">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-lsd">rclone lsd</h2>
<p>List all directories/containers/buckets in the path.</p>
<h3 id="synopsis-10">Synopsis</h3>
<p>Lists the directories in the source path to standard output. Does not recurse by default. Use the -R flag to recurse.</p>
<p>This command lists the total size of the directory (if known, -1 if not), the modification time (if known, the current time if not), the number of objects in the directory (if known, -1 if not) and the name of the directory, Eg</p>
<pre><code>$ rclone lsd swift:
494000 2018-04-26 08:43:20 10000 10000files
65 2018-04-26 08:43:20 1 1File</code></pre>
<p>Or</p>
<pre><code>$ rclone lsd drive:test
-1 2016-10-17 17:41:53 -1 1000files
-1 2017-01-03 14:40:54 -1 2500files
-1 2017-07-08 14:39:28 -1 4000files</code></pre>
<p>If you just want the directory names use “rclone lsf dirs-only”.</p>
<p>Any of the filtering options can be applied to this command.</p>
<p>There are several related list commands</p>
<ul>
<li><code>ls</code> to list size and path of objects only</li>
<li><code>lsl</code> to list modification time, size and path of objects only</li>
<li><code>lsd</code> to list directories only</li>
<li><code>lsf</code> to list objects and directories in easy to parse format</li>
<li><code>lsjson</code> to list objects and directories in JSON format</li>
</ul>
<p><code>ls</code>,<code>lsl</code>,<code>lsd</code> are designed to be human readable. <code>lsf</code> is designed to be human and machine readable. <code>lsjson</code> is designed to be machine readable.</p>
<p>Note that <code>ls</code> and <code>lsl</code> recurse by default - use “max-depth 1” to stop the recursion.</p>
<p>The other list commands <code>lsd</code>,<code>lsf</code>,<code>lsjson</code> do not recurse by default - use “-R” to make them recurse.</p>
<p>Listing a non existent directory will produce an error except for remotes which cant have empty directories (eg s3, swift, gcs, etc - the bucket based remotes).</p>
<pre><code>rclone lsd remote:path [flags]</code></pre>
<h3 id="options-10">Options</h3>
<pre><code> -h, --help help for lsd
-R, --recursive Recurse into the listing.</code></pre>
<h3 id="see-also-10">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-10">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-lsl">rclone lsl</h2>
<p>List the objects in path with modification time, size and path.</p>
<h3 id="synopsis-11">Synopsis</h3>
<p>Lists the objects in the source path to standard output in a human readable format with modification time, size and path. Recurses by default.</p>
<p>Eg</p>
<pre><code>$ rclone lsl swift:bucket
60295 2016-06-25 18:55:41.062626927 bevajer5jef
90613 2016-06-25 18:55:43.302607074 canole
94467 2016-06-25 18:55:43.046609333 diwogej7
37600 2016-06-25 18:55:40.814629136 fubuwic</code></pre>
<p>Any of the filtering options can be applied to this command.</p>
<p>There are several related list commands</p>
<ul>
<li><code>ls</code> to list size and path of objects only</li>
<li><code>lsl</code> to list modification time, size and path of objects only</li>
<li><code>lsd</code> to list directories only</li>
<li><code>lsf</code> to list objects and directories in easy to parse format</li>
<li><code>lsjson</code> to list objects and directories in JSON format</li>
</ul>
<p><code>ls</code>,<code>lsl</code>,<code>lsd</code> are designed to be human readable. <code>lsf</code> is designed to be human and machine readable. <code>lsjson</code> is designed to be machine readable.</p>
<p>Note that <code>ls</code> and <code>lsl</code> recurse by default - use “max-depth 1” to stop the recursion.</p>
<p>The other list commands <code>lsd</code>,<code>lsf</code>,<code>lsjson</code> do not recurse by default - use “-R” to make them recurse.</p>
<p>Listing a non existent directory will produce an error except for remotes which cant have empty directories (eg s3, swift, gcs, etc - the bucket based remotes).</p>
<pre><code>rclone lsl remote:path [flags]</code></pre>
<h3 id="options-11">Options</h3>
<pre><code> -h, --help help for lsl</code></pre>
<h3 id="see-also-11">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-11">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-md5sum">rclone md5sum</h2>
<p>Produces an md5sum file for all the objects in the path.</p>
<h3 id="synopsis-12">Synopsis</h3>
<p>Produces an md5sum file for all the objects in the path. This is in the same format as the standard md5sum tool produces.</p>
<pre><code>rclone md5sum remote:path [flags]</code></pre>
<h3 id="options-12">Options</h3>
<pre><code> -h, --help help for md5sum</code></pre>
<h3 id="see-also-12">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-12">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-sha1sum">rclone sha1sum</h2>
<p>Produces an sha1sum file for all the objects in the path.</p>
<h3 id="synopsis-13">Synopsis</h3>
<p>Produces an sha1sum file for all the objects in the path. This is in the same format as the standard sha1sum tool produces.</p>
<pre><code>rclone sha1sum remote:path [flags]</code></pre>
<h3 id="options-13">Options</h3>
<pre><code> -h, --help help for sha1sum</code></pre>
<h3 id="see-also-13">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-13">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-size">rclone size</h2>
<p>Prints the total size and number of objects in remote:path.</p>
<h3 id="synopsis-14">Synopsis</h3>
<p>Prints the total size and number of objects in remote:path.</p>
<pre><code>rclone size remote:path [flags]</code></pre>
<h3 id="options-14">Options</h3>
<pre><code> -h, --help help for size
--json format output as JSON</code></pre>
<h3 id="see-also-14">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-14">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-version">rclone version</h2>
<p>Show the version number.</p>
<h3 id="synopsis-15">Synopsis</h3>
<p>Show the version number, the go version and the architecture.</p>
<p>Eg</p>
<pre><code>$ rclone version
rclone v1.41
- os/arch: linux/amd64
- go version: go1.10</code></pre>
<p>If you supply the check flag, then it will do an online check to compare your version with the latest release and the latest beta.</p>
<pre><code>$ rclone version --check
yours: 1.42.0.6
latest: 1.42 (released 2018-06-16)
beta: 1.42.0.5 (released 2018-06-17)</code></pre>
<p>Or</p>
<pre><code>$ rclone version --check
yours: 1.41
latest: 1.42 (released 2018-06-16)
upgrade: https://downloads.rclone.org/v1.42
beta: 1.42.0.5 (released 2018-06-17)
upgrade: https://beta.rclone.org/v1.42-005-g56e1e820</code></pre>
<pre><code>rclone version [flags]</code></pre>
<h3 id="options-15">Options</h3>
<pre><code> --check Check for new version.
-h, --help help for version</code></pre>
<h3 id="see-also-15">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-15">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-cleanup">rclone cleanup</h2>
<p>Clean up the remote if possible</p>
<h3 id="synopsis-16">Synopsis</h3>
<p>Clean up the remote if possible. Empty the trash or delete old file versions. Not supported by all remotes.</p>
<pre><code>rclone cleanup remote:path [flags]</code></pre>
<h3 id="options-16">Options</h3>
<pre><code> -h, --help help for cleanup</code></pre>
<h3 id="see-also-16">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-16">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-dedupe">rclone dedupe</h2>
<p>Interactively find duplicate files and delete/rename them.</p>
<h3 id="synopsis-17">Synopsis</h3>
<p>By default <code>dedupe</code> interactively finds duplicate files and offers to delete all but one or rename them to be different. Only useful with Google Drive which can have duplicate file names.</p>
<p>In the first pass it will merge directories with the same name. It will do this iteratively until all the identical directories have been merged.</p>
<p>The <code>dedupe</code> command will delete all but one of any identical (same md5sum) files it finds without confirmation. This means that for most duplicated files the <code>dedupe</code> command will not be interactive. You can use <code>--dry-run</code> to see what would happen without doing anything.</p>
<p>Here is an example run.</p>
<p>Before - with duplicates</p>
<pre><code>$ rclone lsl drive:dupes
6048320 2016-03-05 16:23:16.798000000 one.txt
6048320 2016-03-05 16:23:11.775000000 one.txt
564374 2016-03-05 16:23:06.731000000 one.txt
6048320 2016-03-05 16:18:26.092000000 one.txt
6048320 2016-03-05 16:22:46.185000000 two.txt
1744073 2016-03-05 16:22:38.104000000 two.txt
564374 2016-03-05 16:22:52.118000000 two.txt</code></pre>
<p>Now the <code>dedupe</code> session</p>
<pre><code>$ rclone dedupe drive:dupes
2016/03/05 16:24:37 Google drive root &#39;dupes&#39;: Looking for duplicates using interactive mode.
one.txt: Found 4 duplicates - deleting identical copies
one.txt: Deleting 2/3 identical duplicates (md5sum &quot;1eedaa9fe86fd4b8632e2ac549403b36&quot;)
one.txt: 2 duplicates remain
1: 6048320 bytes, 2016-03-05 16:23:16.798000000, md5sum 1eedaa9fe86fd4b8632e2ac549403b36
2: 564374 bytes, 2016-03-05 16:23:06.731000000, md5sum 7594e7dc9fc28f727c42ee3e0749de81
s) Skip and do nothing
k) Keep just one (choose which in next step)
r) Rename all to be different (by changing file.jpg to file-1.jpg)
s/k/r&gt; k
Enter the number of the file to keep&gt; 1
one.txt: Deleted 1 extra copies
two.txt: Found 3 duplicates - deleting identical copies
two.txt: 3 duplicates remain
1: 564374 bytes, 2016-03-05 16:22:52.118000000, md5sum 7594e7dc9fc28f727c42ee3e0749de81
2: 6048320 bytes, 2016-03-05 16:22:46.185000000, md5sum 1eedaa9fe86fd4b8632e2ac549403b36
3: 1744073 bytes, 2016-03-05 16:22:38.104000000, md5sum 851957f7fb6f0bc4ce76be966d336802
s) Skip and do nothing
k) Keep just one (choose which in next step)
r) Rename all to be different (by changing file.jpg to file-1.jpg)
s/k/r&gt; r
two-1.txt: renamed from: two.txt
two-2.txt: renamed from: two.txt
two-3.txt: renamed from: two.txt</code></pre>
<p>The result being</p>
<pre><code>$ rclone lsl drive:dupes
6048320 2016-03-05 16:23:16.798000000 one.txt
564374 2016-03-05 16:22:52.118000000 two-1.txt
6048320 2016-03-05 16:22:46.185000000 two-2.txt
1744073 2016-03-05 16:22:38.104000000 two-3.txt</code></pre>
<p>Dedupe can be run non interactively using the <code>--dedupe-mode</code> flag or by using an extra parameter with the same value</p>
<ul>
<li><code>--dedupe-mode interactive</code> - interactive as above.</li>
<li><code>--dedupe-mode skip</code> - removes identical files then skips anything left.</li>
<li><code>--dedupe-mode first</code> - removes identical files then keeps the first one.</li>
<li><code>--dedupe-mode newest</code> - removes identical files then keeps the newest one.</li>
<li><code>--dedupe-mode oldest</code> - removes identical files then keeps the oldest one.</li>
<li><code>--dedupe-mode largest</code> - removes identical files then keeps the largest one.</li>
<li><code>--dedupe-mode rename</code> - removes identical files then renames the rest to be different.</li>
</ul>
<p>For example to rename all the identically named photos in your Google Photos directory, do</p>
<pre><code>rclone dedupe --dedupe-mode rename &quot;drive:Google Photos&quot;</code></pre>
<p>Or</p>
<pre><code>rclone dedupe rename &quot;drive:Google Photos&quot;</code></pre>
<pre><code>rclone dedupe [mode] remote:path [flags]</code></pre>
<h3 id="options-17">Options</h3>
<pre><code> --dedupe-mode string Dedupe mode interactive|skip|first|newest|oldest|rename. (default &quot;interactive&quot;)
-h, --help help for dedupe</code></pre>
<h3 id="see-also-17">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-17">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-about">rclone about</h2>
<p>Get quota information from the remote.</p>
<h3 id="synopsis-18">Synopsis</h3>
<p>Get quota information from the remote, like bytes used/free/quota and bytes used in the trash. Not supported by all remotes.</p>
<p>This will print to stdout something like this:</p>
<pre><code>Total: 17G
Used: 7.444G
Free: 1.315G
Trashed: 100.000M
Other: 8.241G</code></pre>
<p>Where the fields are:</p>
<ul>
<li>Total: total size available.</li>
<li>Used: total size used</li>
<li>Free: total amount this user could upload.</li>
<li>Trashed: total amount in the trash</li>
<li>Other: total amount in other storage (eg Gmail, Google Photos)</li>
<li>Objects: total number of objects in the storage</li>
</ul>
<p>Note that not all the backends provide all the fields - they will be missing if they are not known for that backend. Where it is known that the value is unlimited the value will also be omitted.</p>
<p>Use the full flag to see the numbers written out in full, eg</p>
<pre><code>Total: 18253611008
Used: 7993453766
Free: 1411001220
Trashed: 104857602
Other: 8849156022</code></pre>
<p>Use the json flag for a computer readable output, eg</p>
<pre><code>{
&quot;total&quot;: 18253611008,
&quot;used&quot;: 7993453766,
&quot;trashed&quot;: 104857602,
&quot;other&quot;: 8849156022,
&quot;free&quot;: 1411001220
}</code></pre>
<pre><code>rclone about remote: [flags]</code></pre>
<h3 id="options-18">Options</h3>
<pre><code> --full Full numbers instead of SI units
-h, --help help for about
--json Format output as JSON</code></pre>
<h3 id="see-also-18">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-18">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-authorize">rclone authorize</h2>
<p>Remote authorization.</p>
<h3 id="synopsis-19">Synopsis</h3>
<p>Remote authorization. Used to authorize a remote or headless rclone from a machine with a browser - use as instructed by rclone config.</p>
<pre><code>rclone authorize [flags]</code></pre>
<h3 id="options-19">Options</h3>
<pre><code> -h, --help help for authorize</code></pre>
<h3 id="see-also-19">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-19">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-cachestats">rclone cachestats</h2>
<p>Print cache stats for a remote</p>
<h3 id="synopsis-20">Synopsis</h3>
<p>Print cache stats for a remote in JSON format</p>
<pre><code>rclone cachestats source: [flags]</code></pre>
<h3 id="options-20">Options</h3>
<pre><code> -h, --help help for cachestats</code></pre>
<h3 id="see-also-20">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-20">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-cat">rclone cat</h2>
<p>Concatenates any files and sends them to stdout.</p>
<h3 id="synopsis-21">Synopsis</h3>
<p>rclone cat sends any files to standard output.</p>
<p>You can use it like this to output a single file</p>
<pre><code>rclone cat remote:path/to/file</code></pre>
<p>Or like this to output any file in dir or subdirectories.</p>
<pre><code>rclone cat remote:path/to/dir</code></pre>
<p>Or like this to output any .txt files in dir or subdirectories.</p>
<pre><code>rclone --include &quot;*.txt&quot; cat remote:path/to/dir</code></pre>
<p>Use the head flag to print characters only at the start, tail for the end and offset and count to print a section in the middle. Note that if offset is negative it will count from the end, so offset -1 count 1 is equivalent to tail 1.</p>
<pre><code>rclone cat remote:path [flags]</code></pre>
<h3 id="options-21">Options</h3>
<pre><code> --count int Only print N characters. (default -1)
--discard Discard the output instead of printing.
--head int Only print the first N characters.
-h, --help help for cat
--offset int Start printing at offset N (or from end if -ve).
--tail int Only print the last N characters.</code></pre>
<h3 id="see-also-21">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-21">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-create">rclone config create</h2>
<p>Create a new remote with name, type and options.</p>
<h3 id="synopsis-22">Synopsis</h3>
<p>Create a new remote of <name> with <type> and options. The options should be passed in in pairs of <key> <value>.</p>
<p>For example to make a swift remote of name myremote using auto config you would do:</p>
<pre><code>rclone config create myremote swift env_auth true</code></pre>
<p>Note that if the config process would normally ask a question the default is taken. Each time that happens rclone will print a message saying how to affect the value taken.</p>
<p>If any of the parameters passed is a password field, then rclone will automatically obscure them before putting them in the config file.</p>
<p>So for example if you wanted to configure a Google Drive remote but using remote authorization you would do this:</p>
<pre><code>rclone config create mydrive drive config_is_local false</code></pre>
<pre><code>rclone config create &lt;name&gt; &lt;type&gt; [&lt;key&gt; &lt;value&gt;]* [flags]</code></pre>
<h3 id="options-22">Options</h3>
<pre><code> -h, --help help for create</code></pre>
<h3 id="see-also-22">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-22">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-delete">rclone config delete</h2>
<p>Delete an existing remote <name>.</p>
<h3 id="synopsis-23">Synopsis</h3>
<p>Delete an existing remote <name>.</p>
<pre><code>rclone config delete &lt;name&gt; [flags]</code></pre>
<h3 id="options-23">Options</h3>
<pre><code> -h, --help help for delete</code></pre>
<h3 id="see-also-23">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-23">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-dump">rclone config dump</h2>
<p>Dump the config file as JSON.</p>
<h3 id="synopsis-24">Synopsis</h3>
<p>Dump the config file as JSON.</p>
<pre><code>rclone config dump [flags]</code></pre>
<h3 id="options-24">Options</h3>
<pre><code> -h, --help help for dump</code></pre>
<h3 id="see-also-24">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-24">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-edit">rclone config edit</h2>
<p>Enter an interactive configuration session.</p>
<h3 id="synopsis-25">Synopsis</h3>
<p>Enter an interactive configuration session where you can setup new remotes and manage existing ones. You may also set or remove a password to protect your configuration.</p>
<pre><code>rclone config edit [flags]</code></pre>
<h3 id="options-25">Options</h3>
<pre><code> -h, --help help for edit</code></pre>
<h3 id="see-also-25">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-25">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-file">rclone config file</h2>
<p>Show path of configuration file in use.</p>
<h3 id="synopsis-26">Synopsis</h3>
<p>Show path of configuration file in use.</p>
<pre><code>rclone config file [flags]</code></pre>
<h3 id="options-26">Options</h3>
<pre><code> -h, --help help for file</code></pre>
<h3 id="see-also-26">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-26">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-password">rclone config password</h2>
<p>Update password in an existing remote.</p>
<h3 id="synopsis-27">Synopsis</h3>
<p>Update an existing remotes password. The password should be passed in in pairs of <key> <value>.</p>
<p>For example to set password of a remote of name myremote you would do:</p>
<pre><code>rclone config password myremote fieldname mypassword</code></pre>
<p>This command is obsolete now that “config update” and “config create” both support obscuring passwords directly.</p>
<pre><code>rclone config password &lt;name&gt; [&lt;key&gt; &lt;value&gt;]+ [flags]</code></pre>
<h3 id="options-27">Options</h3>
<pre><code> -h, --help help for password</code></pre>
<h3 id="see-also-27">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-27">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-providers">rclone config providers</h2>
<p>List in JSON format all the providers and options.</p>
<h3 id="synopsis-28">Synopsis</h3>
<p>List in JSON format all the providers and options.</p>
<pre><code>rclone config providers [flags]</code></pre>
<h3 id="options-28">Options</h3>
<pre><code> -h, --help help for providers</code></pre>
<h3 id="see-also-28">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-28">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-show">rclone config show</h2>
<p>Print (decrypted) config file, or the config for a single remote.</p>
<h3 id="synopsis-29">Synopsis</h3>
<p>Print (decrypted) config file, or the config for a single remote.</p>
<pre><code>rclone config show [&lt;remote&gt;] [flags]</code></pre>
<h3 id="options-29">Options</h3>
<pre><code> -h, --help help for show</code></pre>
<h3 id="see-also-29">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-29">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-config-update">rclone config update</h2>
<p>Update options in an existing remote.</p>
<h3 id="synopsis-30">Synopsis</h3>
<p>Update an existing remotes options. The options should be passed in in pairs of <key> <value>.</p>
<p>For example to update the env_auth field of a remote of name myremote you would do:</p>
<pre><code>rclone config update myremote swift env_auth true</code></pre>
<p>If any of the parameters passed is a password field, then rclone will automatically obscure them before putting them in the config file.</p>
<p>If the remote uses oauth the token will be updated, if you dont require this add an extra parameter thus:</p>
<pre><code>rclone config update myremote swift env_auth true config_refresh_token false</code></pre>
<pre><code>rclone config update &lt;name&gt; [&lt;key&gt; &lt;value&gt;]+ [flags]</code></pre>
<h3 id="options-30">Options</h3>
<pre><code> -h, --help help for update</code></pre>
<h3 id="see-also-30">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_config/">rclone config</a> - Enter an interactive configuration session.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-30">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-copyto">rclone copyto</h2>
<p>Copy files from source to dest, skipping already copied</p>
<h3 id="synopsis-31">Synopsis</h3>
<p>If source:path is a file or directory then it copies it to a file or directory named dest:path.</p>
<p>This can be used to upload single files to other than their current name. If the source is a directory then it acts exactly like the copy command.</p>
<p>So</p>
<pre><code>rclone copyto src dst</code></pre>
<p>where src and dst are rclone paths, either remote:path or /path/to/local or C:.</p>
<p>This will:</p>
<pre><code>if src is file
copy it to dst, overwriting an existing file if it exists
if src is directory
copy it to dst, overwriting existing files if they exist
see copy command for full details</code></pre>
<p>This doesnt transfer unchanged files, testing by size and modification time or MD5SUM. It doesnt delete files from the destination.</p>
<p><strong>Note</strong>: Use the <code>-P</code>/<code>--progress</code> flag to view real-time transfer statistics</p>
<pre><code>rclone copyto source:path dest:path [flags]</code></pre>
<h3 id="options-31">Options</h3>
<pre><code> -h, --help help for copyto</code></pre>
<h3 id="see-also-31">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-31">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-copyurl">rclone copyurl</h2>
<p>Copy url content to dest.</p>
<h3 id="synopsis-32">Synopsis</h3>
<p>Download urls content and copy it to destination without saving it in tmp storage.</p>
<pre><code>rclone copyurl https://example.com dest:path [flags]</code></pre>
<h3 id="options-32">Options</h3>
<pre><code> -h, --help help for copyurl</code></pre>
<h3 id="see-also-32">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-32">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-cryptcheck">rclone cryptcheck</h2>
<p>Cryptcheck checks the integrity of a crypted remote.</p>
<h3 id="synopsis-33">Synopsis</h3>
<p>rclone cryptcheck checks a remote against a crypted remote. This is the equivalent of running rclone check, but able to check the checksums of the crypted remote.</p>
<p>For it to work the underlying remote of the cryptedremote must support some kind of checksum.</p>
<p>It works by reading the nonce from each file on the cryptedremote: and using that to encrypt each file on the remote:. It then checks the checksum of the underlying file on the cryptedremote: against the checksum of the file it has just encrypted.</p>
<p>Use it like this</p>
<pre><code>rclone cryptcheck /path/to/files encryptedremote:path</code></pre>
<p>You can use it like this also, but that will involve downloading all the files in remote:path.</p>
<pre><code>rclone cryptcheck remote:path encryptedremote:path</code></pre>
<p>After it has run it will log the status of the encryptedremote:.</p>
<p>If you supply the one-way flag, it will only check that files in source match the files in destination, not the other way around. Meaning extra files in destination that are not in the source will not trigger an error.</p>
<pre><code>rclone cryptcheck remote:path cryptedremote:path [flags]</code></pre>
<h3 id="options-33">Options</h3>
<pre><code> -h, --help help for cryptcheck
--one-way Check one way only, source files must exist on destination</code></pre>
<h3 id="see-also-33">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-33">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-cryptdecode">rclone cryptdecode</h2>
<p>Cryptdecode returns unencrypted file names.</p>
<h3 id="synopsis-34">Synopsis</h3>
<p>rclone cryptdecode returns unencrypted file names when provided with a list of encrypted file names. List limit is 10 items.</p>
<p>If you supply the reverse flag, it will return encrypted file names.</p>
<p>use it like this</p>
<pre><code>rclone cryptdecode encryptedremote: encryptedfilename1 encryptedfilename2
rclone cryptdecode --reverse encryptedremote: filename1 filename2</code></pre>
<pre><code>rclone cryptdecode encryptedremote: encryptedfilename [flags]</code></pre>
<h3 id="options-34">Options</h3>
<pre><code> -h, --help help for cryptdecode
--reverse Reverse cryptdecode, encrypts filenames</code></pre>
<h3 id="see-also-34">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-34">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-dbhashsum">rclone dbhashsum</h2>
<p>Produces a Dropbox hash file for all the objects in the path.</p>
<h3 id="synopsis-35">Synopsis</h3>
<p>Produces a Dropbox hash file for all the objects in the path. The hashes are calculated according to <a href="https://www.dropbox.com/developers/reference/content-hash">Dropbox content hash rules</a>. The output is in the same format as md5sum and sha1sum.</p>
<pre><code>rclone dbhashsum remote:path [flags]</code></pre>
<h3 id="options-35">Options</h3>
<pre><code> -h, --help help for dbhashsum</code></pre>
<h3 id="see-also-35">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-35">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-deletefile">rclone deletefile</h2>
<p>Remove a single file from remote.</p>
<h3 id="synopsis-36">Synopsis</h3>
<p>Remove a single file from remote. Unlike <code>delete</code> it cannot be used to remove a directory and it doesnt obey include/exclude filters - if the specified file exists, it will always be removed.</p>
<pre><code>rclone deletefile remote:path [flags]</code></pre>
<h3 id="options-36">Options</h3>
<pre><code> -h, --help help for deletefile</code></pre>
<h3 id="see-also-36">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-36">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-genautocomplete">rclone genautocomplete</h2>
<p>Output completion script for a given shell.</p>
<h3 id="synopsis-37">Synopsis</h3>
<p>Generates a shell completion script for rclone. Run with help to list the supported shells.</p>
<h3 id="options-37">Options</h3>
<pre><code> -h, --help help for genautocomplete</code></pre>
<h3 id="see-also-37">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
<li><a href="https://rclone.org/commands/rclone_genautocomplete_bash/">rclone genautocomplete bash</a> - Output bash completion script for rclone.</li>
<li><a href="https://rclone.org/commands/rclone_genautocomplete_zsh/">rclone genautocomplete zsh</a> - Output zsh completion script for rclone.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-37">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-genautocomplete-bash">rclone genautocomplete bash</h2>
<p>Output bash completion script for rclone.</p>
<h3 id="synopsis-38">Synopsis</h3>
<p>Generates a bash shell autocompletion script for rclone.</p>
<p>This writes to /etc/bash_completion.d/rclone by default so will probably need to be run with sudo or as root, eg</p>
<pre><code>sudo rclone genautocomplete bash</code></pre>
<p>Logout and login again to use the autocompletion scripts, or source them directly</p>
<pre><code>. /etc/bash_completion</code></pre>
<p>If you supply a command line argument the script will be written there.</p>
<pre><code>rclone genautocomplete bash [output_file] [flags]</code></pre>
<h3 id="options-38">Options</h3>
<pre><code> -h, --help help for bash</code></pre>
<h3 id="see-also-38">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_genautocomplete/">rclone genautocomplete</a> - Output completion script for a given shell.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-38">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-genautocomplete-zsh">rclone genautocomplete zsh</h2>
<p>Output zsh completion script for rclone.</p>
<h3 id="synopsis-39">Synopsis</h3>
<p>Generates a zsh autocompletion script for rclone.</p>
<p>This writes to /usr/share/zsh/vendor-completions/_rclone by default so will probably need to be run with sudo or as root, eg</p>
<pre><code>sudo rclone genautocomplete zsh</code></pre>
<p>Logout and login again to use the autocompletion scripts, or source them directly</p>
<pre><code>autoload -U compinit &amp;&amp; compinit</code></pre>
<p>If you supply a command line argument the script will be written there.</p>
<pre><code>rclone genautocomplete zsh [output_file] [flags]</code></pre>
<h3 id="options-39">Options</h3>
<pre><code> -h, --help help for zsh</code></pre>
<h3 id="see-also-39">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_genautocomplete/">rclone genautocomplete</a> - Output completion script for a given shell.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-39">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-gendocs">rclone gendocs</h2>
<p>Output markdown docs for rclone to the directory supplied.</p>
<h3 id="synopsis-40">Synopsis</h3>
<p>This produces markdown docs for the rclone commands to the directory supplied. These are in a format suitable for hugo to render into the rclone.org website.</p>
<pre><code>rclone gendocs output_directory [flags]</code></pre>
<h3 id="options-40">Options</h3>
<pre><code> -h, --help help for gendocs</code></pre>
<h3 id="see-also-40">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-40">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-hashsum">rclone hashsum</h2>
<p>Produces an hashsum file for all the objects in the path.</p>
<h3 id="synopsis-41">Synopsis</h3>
<p>Produces a hash file for all the objects in the path using the hash named. The output is in the same format as the standard md5sum/sha1sum tool.</p>
<p>Run without a hash to see the list of supported hashes, eg</p>
<pre><code>$ rclone hashsum
Supported hashes are:
* MD5
* SHA-1
* DropboxHash
* QuickXorHash</code></pre>
<p>Then</p>
<pre><code>$ rclone hashsum MD5 remote:path</code></pre>
<pre><code>rclone hashsum &lt;hash&gt; remote:path [flags]</code></pre>
<h3 id="options-41">Options</h3>
<pre><code> -h, --help help for hashsum</code></pre>
<h3 id="see-also-41">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-41">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-link">rclone link</h2>
<p>Generate public link to file/folder.</p>
<h3 id="synopsis-42">Synopsis</h3>
<p>rclone link will create or retrieve a public link to the given file or folder.</p>
<pre><code>rclone link remote:path/to/file
rclone link remote:path/to/folder/</code></pre>
<p>If successful, the last line of the output will contain the link. Exact capabilities depend on the remote, but the link will always be created with the least constraints e.g. no expiry, no password protection, accessible without account.</p>
<pre><code>rclone link remote:path [flags]</code></pre>
<h3 id="options-42">Options</h3>
<pre><code> -h, --help help for link</code></pre>
<h3 id="see-also-42">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-42">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-listremotes">rclone listremotes</h2>
<p>List all the remotes in the config file.</p>
<h3 id="synopsis-43">Synopsis</h3>
<p>rclone listremotes lists all the available remotes from the config file.</p>
<p>When uses with the -l flag it lists the types too.</p>
<pre><code>rclone listremotes [flags]</code></pre>
<h3 id="options-43">Options</h3>
<pre><code> -h, --help help for listremotes
--long Show the type as well as names.</code></pre>
<h3 id="see-also-43">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-43">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-lsf">rclone lsf</h2>
<p>List directories and objects in remote:path formatted for parsing</p>
<h3 id="synopsis-44">Synopsis</h3>
<p>List the contents of the source path (directories and objects) to standard output in a form which is easy to parse by scripts. By default this will just be the names of the objects and directories, one per line. The directories will have a / suffix.</p>
<p>Eg</p>
<pre><code>$ rclone lsf swift:bucket
bevajer5jef
canole
diwogej7
ferejej3gux/
fubuwic</code></pre>
<p>Use the format option to control what gets listed. By default this is just the path, but you can use these parameters to control the output:</p>
<pre><code>p - path
s - size
t - modification time
h - hash
i - ID of object
o - Original ID of underlying object
m - MimeType of object if known
e - encrypted name
T - tier of storage if known, eg &quot;Hot&quot; or &quot;Cool&quot;</code></pre>
<p>So if you wanted the path, size and modification time, you would use format “pst”, or maybe format “tsp” to put the path last.</p>
<p>Eg</p>
<pre><code>$ rclone lsf --format &quot;tsp&quot; swift:bucket
2016-06-25 18:55:41;60295;bevajer5jef
2016-06-25 18:55:43;90613;canole
2016-06-25 18:55:43;94467;diwogej7
2018-04-26 08:50:45;0;ferejej3gux/
2016-06-25 18:55:40;37600;fubuwic</code></pre>
<p>If you specify “h” in the format you will get the MD5 hash by default, use the “hash” flag to change which hash you want. Note that this can be returned as an empty string if it isnt available on the object (and for directories), “ERROR” if there was an error reading it from the object and “UNSUPPORTED” if that object does not support that hash type.</p>
<p>For example to emulate the md5sum command you can use</p>
<pre><code>rclone lsf -R --hash MD5 --format hp --separator &quot; &quot; --files-only .</code></pre>
<p>Eg</p>
<pre><code>$ rclone lsf -R --hash MD5 --format hp --separator &quot; &quot; --files-only swift:bucket
7908e352297f0f530b84a756f188baa3 bevajer5jef
cd65ac234e6fea5925974a51cdd865cc canole
03b5341b4f234b9d984d03ad076bae91 diwogej7
8fd37c3810dd660778137ac3a66cc06d fubuwic
99713e14a4c4ff553acaf1930fad985b gixacuh7ku</code></pre>
<p>(Though “rclone md5sum .” is an easier way of typing this.)</p>
<p>By default the separator is “;” this can be changed with the separator flag. Note that separators arent escaped in the path so putting it last is a good strategy.</p>
<p>Eg</p>
<pre><code>$ rclone lsf --separator &quot;,&quot; --format &quot;tshp&quot; swift:bucket
2016-06-25 18:55:41,60295,7908e352297f0f530b84a756f188baa3,bevajer5jef
2016-06-25 18:55:43,90613,cd65ac234e6fea5925974a51cdd865cc,canole
2016-06-25 18:55:43,94467,03b5341b4f234b9d984d03ad076bae91,diwogej7
2018-04-26 08:52:53,0,,ferejej3gux/
2016-06-25 18:55:40,37600,8fd37c3810dd660778137ac3a66cc06d,fubuwic</code></pre>
<p>You can output in CSV standard format. This will escape things in &quot; if they contain ,</p>
<p>Eg</p>
<pre><code>$ rclone lsf --csv --files-only --format ps remote:path
test.log,22355
test.sh,449
&quot;this file contains a comma, in the file name.txt&quot;,6</code></pre>
<p>Note that the absolute parameter is useful for making lists of files to pass to an rclone copy with the files-from flag.</p>
<p>For example to find all the files modified within one day and copy those only (without traversing the whole directory structure):</p>
<pre><code>rclone lsf --absolute --files-only --max-age 1d /path/to/local &gt; new_files
rclone copy --files-from new_files /path/to/local remote:path</code></pre>
<p>Any of the filtering options can be applied to this command.</p>
<p>There are several related list commands</p>
<ul>
<li><code>ls</code> to list size and path of objects only</li>
<li><code>lsl</code> to list modification time, size and path of objects only</li>
<li><code>lsd</code> to list directories only</li>
<li><code>lsf</code> to list objects and directories in easy to parse format</li>
<li><code>lsjson</code> to list objects and directories in JSON format</li>
</ul>
<p><code>ls</code>,<code>lsl</code>,<code>lsd</code> are designed to be human readable. <code>lsf</code> is designed to be human and machine readable. <code>lsjson</code> is designed to be machine readable.</p>
<p>Note that <code>ls</code> and <code>lsl</code> recurse by default - use “max-depth 1” to stop the recursion.</p>
<p>The other list commands <code>lsd</code>,<code>lsf</code>,<code>lsjson</code> do not recurse by default - use “-R” to make them recurse.</p>
<p>Listing a non existent directory will produce an error except for remotes which cant have empty directories (eg s3, swift, gcs, etc - the bucket based remotes).</p>
<pre><code>rclone lsf remote:path [flags]</code></pre>
<h3 id="options-44">Options</h3>
<pre><code> --absolute Put a leading / in front of path names.
--csv Output in CSV format.
-d, --dir-slash Append a slash to directory names. (default true)
--dirs-only Only list directories.
--files-only Only list files.
-F, --format string Output format - see help for details (default &quot;p&quot;)
--hash h Use this hash when h is used in the format MD5|SHA-1|DropboxHash (default &quot;MD5&quot;)
-h, --help help for lsf
-R, --recursive Recurse into the listing.
-s, --separator string Separator for the items in the format. (default &quot;;&quot;)</code></pre>
<h3 id="see-also-44">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-44">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-lsjson">rclone lsjson</h2>
<p>List directories and objects in the path in JSON format.</p>
<h3 id="synopsis-45">Synopsis</h3>
<p>List directories and objects in the path in JSON format.</p>
<p>The output is an array of Items, where each Item looks like this</p>
<p>{ “Hashes” : { “SHA-1” : “f572d396fae9206628714fb2ce00f72e94f2258f”, “MD5” : “b1946ac92492d2347c6235b4d2611184”, “DropboxHash” : “ecb65bb98f9d905b70458986c39fcbad7715e5f2fcc3b1f07767d7c83e2438cc” }, “ID”: “y2djkhiujf83u33”, “OrigID”: “UYOJVTUW00Q1RzTDA”, “IsBucket” : false, “IsDir” : false, “MimeType” : “application/octet-stream”, “ModTime” : “2017-05-31T16:15:57.034468261+01:00”, “Name” : “file.txt”, “Encrypted” : “v0qpsdq8anpci8n929v3uu9338”, “EncryptedPath” : “kja9098349023498/v0qpsdq8anpci8n929v3uu9338”, “Path” : “full/path/goes/here/file.txt”, “Size” : 6, “Tier” : “hot”, }</p>
<p>If hash is not specified the Hashes property wont be emitted.</p>
<p>If no-modtime is specified then ModTime will be blank.</p>
<p>If encrypted is not specified the Encrypted wont be emitted.</p>
<p>If dirs-only is not specified files in addition to directories are returned</p>
<p>If files-only is not specified directories in addition to the files will be returned.</p>
<p>The Path field will only show folders below the remote path being listed. If “remote:path” contains the file “subfolder/file.txt”, the Path for “file.txt” will be “subfolder/file.txt”, not “remote:path/subfolder/file.txt”. When used without recursive the Path will always be the same as Name.</p>
<p>If the directory is a bucket in a bucket based backend, then “IsBucket” will be set to true. This key wont be present unless it is “true”.</p>
<p>The time is in RFC3339 format with up to nanosecond precision. The number of decimal digits in the seconds will depend on the precision that the remote can hold the times, so if times are accurate to the nearest millisecond (eg Google Drive) then 3 digits will always be shown (“2017-05-31T16:15:57.034+01:00”) whereas if the times are accurate to the nearest second (Dropbox, Box, WebDav etc) no digits will be shown (“2017-05-31T16:15:57+01:00”).</p>
<p>The whole output can be processed as a JSON blob, or alternatively it can be processed line by line as each item is written one to a line.</p>
<p>Any of the filtering options can be applied to this command.</p>
<p>There are several related list commands</p>
<ul>
<li><code>ls</code> to list size and path of objects only</li>
<li><code>lsl</code> to list modification time, size and path of objects only</li>
<li><code>lsd</code> to list directories only</li>
<li><code>lsf</code> to list objects and directories in easy to parse format</li>
<li><code>lsjson</code> to list objects and directories in JSON format</li>
</ul>
<p><code>ls</code>,<code>lsl</code>,<code>lsd</code> are designed to be human readable. <code>lsf</code> is designed to be human and machine readable. <code>lsjson</code> is designed to be machine readable.</p>
<p>Note that <code>ls</code> and <code>lsl</code> recurse by default - use “max-depth 1” to stop the recursion.</p>
<p>The other list commands <code>lsd</code>,<code>lsf</code>,<code>lsjson</code> do not recurse by default - use “-R” to make them recurse.</p>
<p>Listing a non existent directory will produce an error except for remotes which cant have empty directories (eg s3, swift, gcs, etc - the bucket based remotes).</p>
<pre><code>rclone lsjson remote:path [flags]</code></pre>
<h3 id="options-45">Options</h3>
<pre><code> --dirs-only Show only directories in the listing.
-M, --encrypted Show the encrypted names.
--files-only Show only files in the listing.
--hash Include hashes in the output (may take longer).
-h, --help help for lsjson
--no-modtime Don&#39;t read the modification time (can speed things up).
--original Show the ID of the underlying Object.
-R, --recursive Recurse into the listing.</code></pre>
<h3 id="see-also-45">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-45">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-mount">rclone mount</h2>
<p>Mount the remote as file system on a mountpoint.</p>
<h3 id="synopsis-46">Synopsis</h3>
<p>rclone mount allows Linux, FreeBSD, macOS and Windows to mount any of Rclones cloud storage systems as a file system with FUSE.</p>
<p>First set up your remote using <code>rclone config</code>. Check it works with <code>rclone ls</code> etc.</p>
<p>Start the mount like this</p>
<pre><code>rclone mount remote:path/to/files /path/to/local/mount</code></pre>
<p>Or on Windows like this where X: is an unused drive letter</p>
<pre><code>rclone mount remote:path/to/files X:</code></pre>
<p>When the program ends, either via Ctrl+C or receiving a SIGINT or SIGTERM signal, the mount is automatically stopped.</p>
<p>The umount operation can fail, for example when the mountpoint is busy. When that happens, it is the users responsibility to stop the mount manually with</p>
<pre><code># Linux
fusermount -u /path/to/local/mount
# OS X
umount /path/to/local/mount</code></pre>
<h3 id="installing-on-windows">Installing on Windows</h3>
<p>To run rclone mount on Windows, you will need to download and install <a href="http://www.secfs.net/winfsp/">WinFsp</a>.</p>
<p>WinFsp is an <a href="https://github.com/billziss-gh/winfsp">open source</a> Windows File System Proxy which makes it easy to write user space file systems for Windows. It provides a FUSE emulation layer which rclone uses combination with <a href="https://github.com/billziss-gh/cgofuse">cgofuse</a>. Both of these packages are by Bill Zissimopoulos who was very helpful during the implementation of rclone mount for Windows.</p>
<h4 id="windows-caveats">Windows caveats</h4>
<p>Note that drives created as Administrator are not visible by other accounts (including the account that was elevated as Administrator). So if you start a Windows drive from an Administrative Command Prompt and then try to access the same drive from Explorer (which does not run as Administrator), you will not be able to see the new drive.</p>
<p>The easiest way around this is to start the drive from a normal command prompt. It is also possible to start a drive from the SYSTEM account (using <a href="https://github.com/billziss-gh/winfsp/wiki/WinFsp-Service-Architecture">the WinFsp.Launcher infrastructure</a>) which creates drives accessible for everyone on the system or alternatively using <a href="https://nssm.cc/usage">the nssm service manager</a>.</p>
<h3 id="limitations">Limitations</h3>
<p>Without the use of “vfs-cache-mode” this can only write files sequentially, it can only seek when reading. This means that many applications wont work with their files on an rclone mount without “vfs-cache-mode writes” or “vfs-cache-mode full”. See the <a href="#file-caching">File Caching</a> section for more info.</p>
<p>The bucket based remotes (eg Swift, S3, Google Compute Storage, B2, Hubic) wont work from the root - you will need to specify a bucket, or a path within the bucket. So <code>swift:</code> wont work whereas <code>swift:bucket</code> will as will <code>swift:bucket/path</code>. None of these support the concept of directories, so empty directories will have a tendency to disappear once they fall out of the directory cache.</p>
<p>Only supported on Linux, FreeBSD, OS X and Windows at the moment.</p>
<h3 id="rclone-mount-vs-rclone-synccopy">rclone mount vs rclone sync/copy</h3>
<p>File systems expect things to be 100% reliable, whereas cloud storage systems are a long way from 100% reliable. The rclone sync/copy commands cope with this with lots of retries. However rclone mount cant use retries in the same way without making local copies of the uploads. Look at the <a href="#file-caching">file caching</a> for solutions to make mount more reliable.</p>
<h3 id="attribute-caching">Attribute caching</h3>
<p>You can use the flag attr-timeout to set the time the kernel caches the attributes (size, modification time etc) for directory entries.</p>
<p>The default is “1s” which caches files just long enough to avoid too many callbacks to rclone from the kernel.</p>
<p>In theory 0s should be the correct value for filesystems which can change outside the control of the kernel. However this causes quite a few problems such as <a href="https://github.com/rclone/rclone/issues/2157">rclone using too much memory</a>, <a href="https://forum.rclone.org/t/rclone-1-39-vs-1-40-mount-issue/5112">rclone not serving files to samba</a> and <a href="https://github.com/rclone/rclone/issues/2095#issuecomment-371141147">excessive time listing directories</a>.</p>
<p>The kernel can cache the info about a file for the time given by “attr-timeout”. You may see corruption if the remote file changes length during this window. It will show up as either a truncated file or a file with garbage on the end. With “attr-timeout 1s” this is very unlikely but not impossible. The higher you set “attr-timeout” the more likely it is. The default setting of “1s” is the lowest setting which mitigates the problems above.</p>
<p>If you set it higher (10s or 1m say) then the kernel will call back to rclone less often making it more efficient, however there is more chance of the corruption issue above.</p>
<p>If files dont change on the remote outside of the control of rclone then there is no chance of corruption.</p>
<p>This is the same as setting the attr_timeout option in mount.fuse.</p>
<h3 id="filters">Filters</h3>
<p>Note that all the rclone filters can be used to select a subset of the files to be visible in the mount.</p>
<h3 id="systemd">systemd</h3>
<p>When running rclone mount as a systemd service, it is possible to use Type=notify. In this case the service will enter the started state after the mountpoint has been successfully set up. Units having the rclone mount service specified as a requirement will see all files and folders immediately in this mode.</p>
<h3 id="chunked-reading">chunked reading</h3>
<p>vfs-read-chunk-size will enable reading the source objects in parts. This can reduce the used download quota for some remotes by requesting only chunks from the remote that are actually read at the cost of an increased number of requests.</p>
<p>When vfs-read-chunk-size-limit is also specified and greater than vfs-read-chunk-size, the chunk size for each open file will get doubled for each chunk read, until the specified value is reached. A value of -1 will disable the limit and the chunk size will grow indefinitely.</p>
<p>With vfs-read-chunk-size 100M and vfs-read-chunk-size-limit 0 the following parts will be downloaded: 0-100M, 100M-200M, 200M-300M, 300M-400M and so on. When vfs-read-chunk-size-limit 500M is specified, the result would be 0-100M, 100M-300M, 300M-700M, 700M-1200M, 1200M-1700M and so on.</p>
<p>Chunked reading will only work with vfs-cache-mode &lt; full, as the file will always be copied to the vfs cache before opening with vfs-cache-mode full.</p>
<h3 id="directory-cache">Directory Cache</h3>
<p>Using the <code>--dir-cache-time</code> flag, you can set how long a directory should be considered up to date and not refreshed from the backend. Changes made locally in the mount may appear immediately or invalidate the cache. However, changes done on the remote will only be picked up once the cache expires.</p>
<p>Alternatively, you can send a <code>SIGHUP</code> signal to rclone for it to flush all directory caches, regardless of how old they are. Assuming only one rclone instance is running, you can reset the cache like this:</p>
<pre><code>kill -SIGHUP $(pidof rclone)</code></pre>
<p>If you configure rclone with a <a href="/rc">remote control</a> then you can use rclone rc to flush the whole directory cache:</p>
<pre><code>rclone rc vfs/forget</code></pre>
<p>Or individual files or directories:</p>
<pre><code>rclone rc vfs/forget file=path/to/file dir=path/to/dir</code></pre>
<h3 id="file-buffering">File Buffering</h3>
<p>The <code>--buffer-size</code> flag determines the amount of memory, that will be used to buffer data in advance.</p>
<p>Each open file descriptor will try to keep the specified amount of data in memory at all times. The buffered data is bound to one file descriptor and wont be shared between multiple open file descriptors of the same file.</p>
<p>This flag is a upper limit for the used memory per file descriptor. The buffer will only use memory for data that is downloaded but not not yet read. If the buffer is empty, only a small amount of memory will be used. The maximum memory used by rclone for buffering can be up to <code>--buffer-size * open files</code>.</p>
<h3 id="file-caching">File Caching</h3>
<p>These flags control the VFS file caching options. The VFS layer is used by rclone mount to make a cloud storage system work more like a normal file system.</p>
<p>Youll need to enable VFS caching if you want, for example, to read and write simultaneously to a file. See below for more details.</p>
<p>Note that the VFS cache works in addition to the cache backend and you may find that you need one or the other or both.</p>
<pre><code>--cache-dir string Directory rclone will use for caching.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-mode string Cache mode off|minimal|writes|full (default &quot;off&quot;)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-cache-max-size int Max total size of objects in the cache. (default off)</code></pre>
<p>If run with <code>-vv</code> rclone will print the location of the file cache. The files are stored in the user cache file area which is OS dependent but can be controlled with <code>--cache-dir</code> or setting the appropriate environment variable.</p>
<p>The cache has 4 different modes selected by <code>--vfs-cache-mode</code>. The higher the cache mode the more compatible rclone becomes at the cost of using disk space.</p>
<p>Note that files are written back to the remote only when they are closed so if rclone is quit or dies with open files then these wont get written back to the remote. However they will still be in the on disk cache.</p>
<p>If using vfs-cache-max-size note that the cache may exceed this size for two reasons. Firstly because it is only checked every vfs-cache-poll-interval. Secondly because open files cannot be evicted from the cache.</p>
<h4 id="vfs-cache-mode-off">vfs-cache-mode off</h4>
<p>In this mode the cache will read directly from the remote and write directly to the remote without caching anything on disk.</p>
<p>This will mean some operations are not possible</p>
<ul>
<li>Files cant be opened for both read AND write</li>
<li>Files opened for write cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files open for read with O_TRUNC will be opened write only</li>
<li>Files open for write only will behave as if O_TRUNC was supplied</li>
<li>Open modes O_APPEND, O_TRUNC are ignored</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-minimal">vfs-cache-mode minimal</h4>
<p>This is very similar to “off” except that files opened for read AND write will be buffered to disks. This means that files opened for write will be a lot more compatible, but uses the minimal disk space.</p>
<p>These operations are not possible</p>
<ul>
<li>Files opened for write only cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files opened for write only will ignore O_APPEND, O_TRUNC</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-writes">vfs-cache-mode writes</h4>
<p>In this mode files opened for read only are still read directly from the remote, write only and read/write files are buffered to disk first.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload fails it will be retried up to low-level-retries times.</p>
<h4 id="vfs-cache-mode-full">vfs-cache-mode full</h4>
<p>In this mode all reads and writes are buffered to and from disk. When a file is opened for read it will be downloaded in its entirety first.</p>
<p>This may be appropriate for your needs, or you may prefer to look at the cache backend which does a much more sophisticated job of caching, including caching directory hierarchies and chunks of files.</p>
<p>In this mode, unlike the others, when a file is written to the disk, it will be kept on the disk after it is written to the remote. It will be purged on a schedule according to <code>--vfs-cache-max-age</code>.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload or download fails it will be retried up to low-level-retries times.</p>
<pre><code>rclone mount remote:path /path/to/mountpoint [flags]</code></pre>
<h3 id="options-46">Options</h3>
<pre><code> --allow-non-empty Allow mounting over a non-empty directory.
--allow-other Allow access to other users.
--allow-root Allow access to root user.
--attr-timeout duration Time for which file/directory attributes are cached. (default 1s)
--daemon Run mount as a daemon (background mode).
--daemon-timeout duration Time limit for rclone to respond to kernel (not supported by all OSes).
--debug-fuse Debug the FUSE internals - needs -v.
--default-permissions Makes kernel enforce access control based on the file mode.
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
--dir-perms FileMode Directory permissions (default 0777)
--file-perms FileMode File permissions (default 0666)
--fuse-flag stringArray Flags or arguments to be passed direct to libfuse/WinFsp. Repeat if required.
--gid uint32 Override the gid field set by the filesystem. (default 1000)
-h, --help help for mount
--max-read-ahead SizeSuffix The number of bytes that can be prefetched for sequential reads. (default 128k)
--no-checksum Don&#39;t compare checksums on up/download.
--no-modtime Don&#39;t read/write the modification time (can speed things up).
--no-seek Don&#39;t allow seeking in files.
-o, --option stringArray Option for libfuse/WinFsp. Repeat if required.
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
--read-only Mount read-only.
--uid uint32 Override the uid field set by the filesystem. (default 1000)
--umask int Override the permission bits set by the filesystem.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
--vfs-cache-mode CacheMode Cache mode off|minimal|writes|full (default off)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-read-chunk-size SizeSuffix Read the source objects in chunks. (default 128M)
--vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. &#39;off&#39; is unlimited. (default off)
--volname string Set the volume name (not supported by all OSes).
--write-back-cache Makes kernel buffer writes before sending them to rclone. Without this, writethrough caching is used.</code></pre>
<h3 id="see-also-46">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-46">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-moveto">rclone moveto</h2>
<p>Move file or directory from source to dest.</p>
<h3 id="synopsis-47">Synopsis</h3>
<p>If source:path is a file or directory then it moves it to a file or directory named dest:path.</p>
<p>This can be used to rename files or upload single files to other than their existing name. If the source is a directory then it acts exactly like the move command.</p>
<p>So</p>
<pre><code>rclone moveto src dst</code></pre>
<p>where src and dst are rclone paths, either remote:path or /path/to/local or C:.</p>
<p>This will:</p>
<pre><code>if src is file
move it to dst, overwriting an existing file if it exists
if src is directory
move it to dst, overwriting existing files if they exist
see move command for full details</code></pre>
<p>This doesnt transfer unchanged files, testing by size and modification time or MD5SUM. src will be deleted on successful transfer.</p>
<p><strong>Important</strong>: Since this can cause data loss, test first with the dry-run flag.</p>
<p><strong>Note</strong>: Use the <code>-P</code>/<code>--progress</code> flag to view real-time transfer statistics.</p>
<pre><code>rclone moveto source:path dest:path [flags]</code></pre>
<h3 id="options-47">Options</h3>
<pre><code> -h, --help help for moveto</code></pre>
<h3 id="see-also-47">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-47">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-ncdu">rclone ncdu</h2>
<p>Explore a remote with a text based user interface.</p>
<h3 id="synopsis-48">Synopsis</h3>
<p>This displays a text based user interface allowing the navigation of a remote. It is most useful for answering the question - “What is using all my disk space?”.</p>
<script src="https://asciinema.org/a/157793.js" id="asciicast-157793" async></script>
<p>To make the user interface it first scans the entire remote given and builds an in memory representation. rclone ncdu can be used during this scanning phase and you will see it building up the directory structure as it goes along.</p>
<p>Here are the keys - press ? to toggle the help on and off</p>
<pre><code> ↑,↓ or k,j to Move
→,l to enter
←,h to return
c toggle counts
g toggle graph
n,s,C sort by name,size,count
d delete file/directory
^L refresh screen
? to toggle help on and off
q/ESC/c-C to quit</code></pre>
<p>This an homage to the <a href="https://dev.yorhel.nl/ncdu">ncdu tool</a> but for rclone remotes. It is missing lots of features at the moment but is useful as it stands.</p>
<p>Note that it might take some time to delete big files/folders. The UI wont respond in the meantime since the deletion is done synchronously.</p>
<pre><code>rclone ncdu remote:path [flags]</code></pre>
<h3 id="options-48">Options</h3>
<pre><code> -h, --help help for ncdu</code></pre>
<h3 id="see-also-48">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-48">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-obscure">rclone obscure</h2>
<p>Obscure password for use in the rclone.conf</p>
<h3 id="synopsis-49">Synopsis</h3>
<p>Obscure password for use in the rclone.conf</p>
<pre><code>rclone obscure password [flags]</code></pre>
<h3 id="options-49">Options</h3>
<pre><code> -h, --help help for obscure</code></pre>
<h3 id="see-also-49">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-49">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-rc">rclone rc</h2>
<p>Run a command against a running rclone.</p>
<h3 id="synopsis-50">Synopsis</h3>
<p>This runs a command against a running rclone. Use the url flag to specify an non default URL to connect on. This can be either a “:port” which is taken to mean “http://localhost:port” or a “host:port” which is taken to mean “http://host:port”</p>
<p>A username and password can be passed in with user and pass.</p>
<p>Note that rc-addr, rc-user, rc-pass will be read also for url, user, pass.</p>
<p>Arguments should be passed in as parameter=value.</p>
<p>The result will be returned as a JSON object by default.</p>
<p>The json parameter can be used to pass in a JSON blob as an input instead of key=value arguments. This is the only way of passing in more complicated values.</p>
<p>Use loopback to connect to the rclone instance running “rclone rc”. This is very useful for testing commands without having to run an rclone rc server, eg:</p>
<pre><code>rclone rc --loopback operations/about fs=/</code></pre>
<p>Use “rclone rc” to see a list of all possible commands.</p>
<pre><code>rclone rc commands parameter [flags]</code></pre>
<h3 id="options-50">Options</h3>
<pre><code> -h, --help help for rc
--json string Input JSON - use instead of key=value args.
--loopback If set connect to this rclone instance not via HTTP.
--no-output If set don&#39;t output the JSON result.
--pass string Password to use to connect to rclone remote control.
--url string URL to connect to rclone remote control. (default &quot;http://localhost:5572/&quot;)
--user string Username to use to rclone remote control.</code></pre>
<h3 id="see-also-50">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-50">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-rcat">rclone rcat</h2>
<p>Copies standard input to file on remote.</p>
<h3 id="synopsis-51">Synopsis</h3>
<p>rclone rcat reads from standard input (stdin) and copies it to a single remote file.</p>
<pre><code>echo &quot;hello world&quot; | rclone rcat remote:path/to/file
ffmpeg - | rclone rcat remote:path/to/file</code></pre>
<p>If the remote file already exists, it will be overwritten.</p>
<p>rcat will try to upload small files in a single request, which is usually more efficient than the streaming/chunked upload endpoints, which use multiple requests. Exact behaviour depends on the remote. What is considered a small file may be set through <code>--streaming-upload-cutoff</code>. Uploading only starts after the cutoff is reached or if the file ends before that. The data must fit into RAM. The cutoff needs to be small enough to adhere the limits of your remote, please see there. Generally speaking, setting this cutoff too high will decrease your performance.</p>
<p>Note that the upload can also not be retried because the data is not kept around until the upload succeeds. If you need to transfer a lot of data, youre better off caching locally and then <code>rclone move</code> it to the destination.</p>
<pre><code>rclone rcat remote:path [flags]</code></pre>
<h3 id="options-51">Options</h3>
<pre><code> -h, --help help for rcat</code></pre>
<h3 id="see-also-51">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-51">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-rcd">rclone rcd</h2>
<p>Run rclone listening to remote control commands only.</p>
<h3 id="synopsis-52">Synopsis</h3>
<p>This runs rclone so that it only listens to remote control commands.</p>
<p>This is useful if you are controlling rclone via the rc API.</p>
<p>If you pass in a path to a directory, rclone will serve that directory for GET requests on the URL passed in. It will also open the URL in the browser when rclone is run.</p>
<p>See the <a href="https://rclone.org/rc/">rc documentation</a> for more info on the rc flags.</p>
<pre><code>rclone rcd &lt;path to files to serve&gt;* [flags]</code></pre>
<h3 id="options-52">Options</h3>
<pre><code> -h, --help help for rcd</code></pre>
<h3 id="see-also-52">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-52">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-rmdirs">rclone rmdirs</h2>
<p>Remove empty directories under the path.</p>
<h3 id="synopsis-53">Synopsis</h3>
<p>This removes any empty directories (or directories that only contain empty directories) under the path that it finds, including the path if it has nothing in.</p>
<p>If you supply the leave-root flag, it will not remove the root directory.</p>
<p>This is useful for tidying up remotes that rclone has left a lot of empty directories in.</p>
<pre><code>rclone rmdirs remote:path [flags]</code></pre>
<h3 id="options-53">Options</h3>
<pre><code> -h, --help help for rmdirs
--leave-root Do not remove root directory if empty</code></pre>
<h3 id="see-also-53">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-53">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-serve">rclone serve</h2>
<p>Serve a remote over a protocol.</p>
<h3 id="synopsis-54">Synopsis</h3>
<p>rclone serve is used to serve a remote over a given protocol. This command requires the use of a subcommand to specify the protocol, eg</p>
<pre><code>rclone serve http remote:</code></pre>
<p>Each subcommand has its own options which you can see in their help.</p>
<pre><code>rclone serve &lt;protocol&gt; [opts] &lt;remote&gt; [flags]</code></pre>
<h3 id="options-54">Options</h3>
<pre><code> -h, --help help for serve</code></pre>
<h3 id="see-also-54">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
<li><a href="https://rclone.org/commands/rclone_serve_dlna/">rclone serve dlna</a> - Serve remote:path over DLNA</li>
<li><a href="https://rclone.org/commands/rclone_serve_ftp/">rclone serve ftp</a> - Serve remote:path over FTP.</li>
<li><a href="https://rclone.org/commands/rclone_serve_http/">rclone serve http</a> - Serve the remote over HTTP.</li>
<li><a href="https://rclone.org/commands/rclone_serve_restic/">rclone serve restic</a> - Serve the remote for restics REST API.</li>
<li><a href="https://rclone.org/commands/rclone_serve_sftp/">rclone serve sftp</a> - Serve the remote over SFTP.</li>
<li><a href="https://rclone.org/commands/rclone_serve_webdav/">rclone serve webdav</a> - Serve remote:path over webdav.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-54">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-serve-dlna">rclone serve dlna</h2>
<p>Serve remote:path over DLNA</p>
<h3 id="synopsis-55">Synopsis</h3>
<p>rclone serve dlna is a DLNA media server for media stored in a rclone remote. Many devices, such as the Xbox and PlayStation, can automatically discover this server in the LAN and play audio/video from it. VLC is also supported. Service discovery uses UDP multicast packets (SSDP) and will thus only work on LANs.</p>
<p>Rclone will list all files present in the remote, without filtering based on media formats or file extensions. Additionally, there is no media transcoding support. This means that some players might show files that they are not able to play back correctly.</p>
<h3 id="server-options">Server options</h3>
<p>Use addr to specify which IP address and port the server should listen on, eg addr 1.2.3.4:8000 or addr :8080 to listen to all IPs.</p>
<p>Use name to choose the friendly server name, which is by default “rclone (hostname)”.</p>
<p>Use log-trace in conjunction with -vv to enable additional debug logging of all UPNP traffic.</p>
<h3 id="directory-cache-1">Directory Cache</h3>
<p>Using the <code>--dir-cache-time</code> flag, you can set how long a directory should be considered up to date and not refreshed from the backend. Changes made locally in the mount may appear immediately or invalidate the cache. However, changes done on the remote will only be picked up once the cache expires.</p>
<p>Alternatively, you can send a <code>SIGHUP</code> signal to rclone for it to flush all directory caches, regardless of how old they are. Assuming only one rclone instance is running, you can reset the cache like this:</p>
<pre><code>kill -SIGHUP $(pidof rclone)</code></pre>
<p>If you configure rclone with a <a href="/rc">remote control</a> then you can use rclone rc to flush the whole directory cache:</p>
<pre><code>rclone rc vfs/forget</code></pre>
<p>Or individual files or directories:</p>
<pre><code>rclone rc vfs/forget file=path/to/file dir=path/to/dir</code></pre>
<h3 id="file-buffering-1">File Buffering</h3>
<p>The <code>--buffer-size</code> flag determines the amount of memory, that will be used to buffer data in advance.</p>
<p>Each open file descriptor will try to keep the specified amount of data in memory at all times. The buffered data is bound to one file descriptor and wont be shared between multiple open file descriptors of the same file.</p>
<p>This flag is a upper limit for the used memory per file descriptor. The buffer will only use memory for data that is downloaded but not not yet read. If the buffer is empty, only a small amount of memory will be used. The maximum memory used by rclone for buffering can be up to <code>--buffer-size * open files</code>.</p>
<h3 id="file-caching-1">File Caching</h3>
<p>These flags control the VFS file caching options. The VFS layer is used by rclone mount to make a cloud storage system work more like a normal file system.</p>
<p>Youll need to enable VFS caching if you want, for example, to read and write simultaneously to a file. See below for more details.</p>
<p>Note that the VFS cache works in addition to the cache backend and you may find that you need one or the other or both.</p>
<pre><code>--cache-dir string Directory rclone will use for caching.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-mode string Cache mode off|minimal|writes|full (default &quot;off&quot;)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-cache-max-size int Max total size of objects in the cache. (default off)</code></pre>
<p>If run with <code>-vv</code> rclone will print the location of the file cache. The files are stored in the user cache file area which is OS dependent but can be controlled with <code>--cache-dir</code> or setting the appropriate environment variable.</p>
<p>The cache has 4 different modes selected by <code>--vfs-cache-mode</code>. The higher the cache mode the more compatible rclone becomes at the cost of using disk space.</p>
<p>Note that files are written back to the remote only when they are closed so if rclone is quit or dies with open files then these wont get written back to the remote. However they will still be in the on disk cache.</p>
<p>If using vfs-cache-max-size note that the cache may exceed this size for two reasons. Firstly because it is only checked every vfs-cache-poll-interval. Secondly because open files cannot be evicted from the cache.</p>
<h4 id="vfs-cache-mode-off-1">vfs-cache-mode off</h4>
<p>In this mode the cache will read directly from the remote and write directly to the remote without caching anything on disk.</p>
<p>This will mean some operations are not possible</p>
<ul>
<li>Files cant be opened for both read AND write</li>
<li>Files opened for write cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files open for read with O_TRUNC will be opened write only</li>
<li>Files open for write only will behave as if O_TRUNC was supplied</li>
<li>Open modes O_APPEND, O_TRUNC are ignored</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-minimal-1">vfs-cache-mode minimal</h4>
<p>This is very similar to “off” except that files opened for read AND write will be buffered to disks. This means that files opened for write will be a lot more compatible, but uses the minimal disk space.</p>
<p>These operations are not possible</p>
<ul>
<li>Files opened for write only cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files opened for write only will ignore O_APPEND, O_TRUNC</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-writes-1">vfs-cache-mode writes</h4>
<p>In this mode files opened for read only are still read directly from the remote, write only and read/write files are buffered to disk first.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload fails it will be retried up to low-level-retries times.</p>
<h4 id="vfs-cache-mode-full-1">vfs-cache-mode full</h4>
<p>In this mode all reads and writes are buffered to and from disk. When a file is opened for read it will be downloaded in its entirety first.</p>
<p>This may be appropriate for your needs, or you may prefer to look at the cache backend which does a much more sophisticated job of caching, including caching directory hierarchies and chunks of files.</p>
<p>In this mode, unlike the others, when a file is written to the disk, it will be kept on the disk after it is written to the remote. It will be purged on a schedule according to <code>--vfs-cache-max-age</code>.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload or download fails it will be retried up to low-level-retries times.</p>
<pre><code>rclone serve dlna remote:path [flags]</code></pre>
<h3 id="options-55">Options</h3>
<pre><code> --addr string ip:port or :port to bind the DLNA http server to. (default &quot;:7879&quot;)
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
--dir-perms FileMode Directory permissions (default 0777)
--file-perms FileMode File permissions (default 0666)
--gid uint32 Override the gid field set by the filesystem. (default 1000)
-h, --help help for dlna
--log-trace enable trace logging of SOAP traffic
--name string name of DLNA server
--no-checksum Don&#39;t compare checksums on up/download.
--no-modtime Don&#39;t read/write the modification time (can speed things up).
--no-seek Don&#39;t allow seeking in files.
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
--read-only Mount read-only.
--uid uint32 Override the uid field set by the filesystem. (default 1000)
--umask int Override the permission bits set by the filesystem. (default 2)
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
--vfs-cache-mode CacheMode Cache mode off|minimal|writes|full (default off)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-read-chunk-size SizeSuffix Read the source objects in chunks. (default 128M)
--vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. &#39;off&#39; is unlimited. (default off)</code></pre>
<h3 id="see-also-55">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_serve/">rclone serve</a> - Serve a remote over a protocol.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-55">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-serve-ftp">rclone serve ftp</h2>
<p>Serve remote:path over FTP.</p>
<h3 id="synopsis-56">Synopsis</h3>
<p>rclone serve ftp implements a basic ftp server to serve the remote over FTP protocol. This can be viewed with a ftp client or you can make a remote of type ftp to read and write it.</p>
<h3 id="server-options-1">Server options</h3>
<p>Use addr to specify which IP address and port the server should listen on, eg addr 1.2.3.4:8000 or addr :8080 to listen to all IPs. By default it only listens on localhost. You can use port :0 to let the OS choose an available port.</p>
<p>If you set addr to listen on a public or LAN accessible IP address then using Authentication is advised - see the next section for info.</p>
<h4 id="authentication">Authentication</h4>
<p>By default this will serve files without needing a login.</p>
<p>You can set a single username and password with the user and pass flags.</p>
<h3 id="directory-cache-2">Directory Cache</h3>
<p>Using the <code>--dir-cache-time</code> flag, you can set how long a directory should be considered up to date and not refreshed from the backend. Changes made locally in the mount may appear immediately or invalidate the cache. However, changes done on the remote will only be picked up once the cache expires.</p>
<p>Alternatively, you can send a <code>SIGHUP</code> signal to rclone for it to flush all directory caches, regardless of how old they are. Assuming only one rclone instance is running, you can reset the cache like this:</p>
<pre><code>kill -SIGHUP $(pidof rclone)</code></pre>
<p>If you configure rclone with a <a href="/rc">remote control</a> then you can use rclone rc to flush the whole directory cache:</p>
<pre><code>rclone rc vfs/forget</code></pre>
<p>Or individual files or directories:</p>
<pre><code>rclone rc vfs/forget file=path/to/file dir=path/to/dir</code></pre>
<h3 id="file-buffering-2">File Buffering</h3>
<p>The <code>--buffer-size</code> flag determines the amount of memory, that will be used to buffer data in advance.</p>
<p>Each open file descriptor will try to keep the specified amount of data in memory at all times. The buffered data is bound to one file descriptor and wont be shared between multiple open file descriptors of the same file.</p>
<p>This flag is a upper limit for the used memory per file descriptor. The buffer will only use memory for data that is downloaded but not not yet read. If the buffer is empty, only a small amount of memory will be used. The maximum memory used by rclone for buffering can be up to <code>--buffer-size * open files</code>.</p>
<h3 id="file-caching-2">File Caching</h3>
<p>These flags control the VFS file caching options. The VFS layer is used by rclone mount to make a cloud storage system work more like a normal file system.</p>
<p>Youll need to enable VFS caching if you want, for example, to read and write simultaneously to a file. See below for more details.</p>
<p>Note that the VFS cache works in addition to the cache backend and you may find that you need one or the other or both.</p>
<pre><code>--cache-dir string Directory rclone will use for caching.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-mode string Cache mode off|minimal|writes|full (default &quot;off&quot;)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-cache-max-size int Max total size of objects in the cache. (default off)</code></pre>
<p>If run with <code>-vv</code> rclone will print the location of the file cache. The files are stored in the user cache file area which is OS dependent but can be controlled with <code>--cache-dir</code> or setting the appropriate environment variable.</p>
<p>The cache has 4 different modes selected by <code>--vfs-cache-mode</code>. The higher the cache mode the more compatible rclone becomes at the cost of using disk space.</p>
<p>Note that files are written back to the remote only when they are closed so if rclone is quit or dies with open files then these wont get written back to the remote. However they will still be in the on disk cache.</p>
<p>If using vfs-cache-max-size note that the cache may exceed this size for two reasons. Firstly because it is only checked every vfs-cache-poll-interval. Secondly because open files cannot be evicted from the cache.</p>
<h4 id="vfs-cache-mode-off-2">vfs-cache-mode off</h4>
<p>In this mode the cache will read directly from the remote and write directly to the remote without caching anything on disk.</p>
<p>This will mean some operations are not possible</p>
<ul>
<li>Files cant be opened for both read AND write</li>
<li>Files opened for write cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files open for read with O_TRUNC will be opened write only</li>
<li>Files open for write only will behave as if O_TRUNC was supplied</li>
<li>Open modes O_APPEND, O_TRUNC are ignored</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-minimal-2">vfs-cache-mode minimal</h4>
<p>This is very similar to “off” except that files opened for read AND write will be buffered to disks. This means that files opened for write will be a lot more compatible, but uses the minimal disk space.</p>
<p>These operations are not possible</p>
<ul>
<li>Files opened for write only cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files opened for write only will ignore O_APPEND, O_TRUNC</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-writes-2">vfs-cache-mode writes</h4>
<p>In this mode files opened for read only are still read directly from the remote, write only and read/write files are buffered to disk first.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload fails it will be retried up to low-level-retries times.</p>
<h4 id="vfs-cache-mode-full-2">vfs-cache-mode full</h4>
<p>In this mode all reads and writes are buffered to and from disk. When a file is opened for read it will be downloaded in its entirety first.</p>
<p>This may be appropriate for your needs, or you may prefer to look at the cache backend which does a much more sophisticated job of caching, including caching directory hierarchies and chunks of files.</p>
<p>In this mode, unlike the others, when a file is written to the disk, it will be kept on the disk after it is written to the remote. It will be purged on a schedule according to <code>--vfs-cache-max-age</code>.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload or download fails it will be retried up to low-level-retries times.</p>
<pre><code>rclone serve ftp remote:path [flags]</code></pre>
<h3 id="options-56">Options</h3>
<pre><code> --addr string IPaddress:Port or :Port to bind server to. (default &quot;localhost:2121&quot;)
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
--dir-perms FileMode Directory permissions (default 0777)
--file-perms FileMode File permissions (default 0666)
--gid uint32 Override the gid field set by the filesystem. (default 1000)
-h, --help help for ftp
--no-checksum Don&#39;t compare checksums on up/download.
--no-modtime Don&#39;t read/write the modification time (can speed things up).
--no-seek Don&#39;t allow seeking in files.
--pass string Password for authentication. (empty value allow every password)
--passive-port string Passive port range to use. (default &quot;30000-32000&quot;)
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
--public-ip string Public IP address to advertise for passive connections.
--read-only Mount read-only.
--uid uint32 Override the uid field set by the filesystem. (default 1000)
--umask int Override the permission bits set by the filesystem. (default 2)
--user string User name for authentication. (default &quot;anonymous&quot;)
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
--vfs-cache-mode CacheMode Cache mode off|minimal|writes|full (default off)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-read-chunk-size SizeSuffix Read the source objects in chunks. (default 128M)
--vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. &#39;off&#39; is unlimited. (default off)</code></pre>
<h3 id="see-also-56">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_serve/">rclone serve</a> - Serve a remote over a protocol.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-56">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-serve-http">rclone serve http</h2>
<p>Serve the remote over HTTP.</p>
<h3 id="synopsis-57">Synopsis</h3>
<p>rclone serve http implements a basic web server to serve the remote over HTTP. This can be viewed in a web browser or you can make a remote of type http read from it.</p>
<p>You can use the filter flags (eg include, exclude) to control what is served.</p>
<p>The server will log errors. Use -v to see access logs.</p>
<p>bwlimit will be respected for file transfers. Use stats to control the stats printing.</p>
<h3 id="server-options-2">Server options</h3>
<p>Use addr to specify which IP address and port the server should listen on, eg addr 1.2.3.4:8000 or addr :8080 to listen to all IPs. By default it only listens on localhost. You can use port :0 to let the OS choose an available port.</p>
<p>If you set addr to listen on a public or LAN accessible IP address then using Authentication is advised - see the next section for info.</p>
<p>server-read-timeout and server-write-timeout can be used to control the timeouts on the server. Note that this is the total time for a transfer.</p>
<p>max-header-bytes controls the maximum number of bytes the server will accept in the HTTP header.</p>
<h4 id="authentication-1">Authentication</h4>
<p>By default this will serve files without needing a login.</p>
<p>You can either use an htpasswd file which can take lots of users, or set a single username and password with the user and pass flags.</p>
<p>Use htpasswd /path/to/htpasswd to provide an htpasswd file. This is in standard apache format and supports MD5, SHA1 and BCrypt for basic authentication. Bcrypt is recommended.</p>
<p>To create an htpasswd file:</p>
<pre><code>touch htpasswd
htpasswd -B htpasswd user
htpasswd -B htpasswd anotherUser</code></pre>
<p>The password file can be updated while rclone is running.</p>
<p>Use realm to set the authentication realm.</p>
<h4 id="ssltls">SSL/TLS</h4>
<p>By default this will serve over http. If you want you can serve over https. You will need to supply the cert and key flags. If you wish to do client side certificate validation then you will need to supply client-ca also.</p>
<p>cert should be a either a PEM encoded certificate or a concatenation of that with the CA certificate. key should be the PEM encoded private key and client-ca should be the PEM encoded client certificate authority certificate.</p>
<h3 id="directory-cache-3">Directory Cache</h3>
<p>Using the <code>--dir-cache-time</code> flag, you can set how long a directory should be considered up to date and not refreshed from the backend. Changes made locally in the mount may appear immediately or invalidate the cache. However, changes done on the remote will only be picked up once the cache expires.</p>
<p>Alternatively, you can send a <code>SIGHUP</code> signal to rclone for it to flush all directory caches, regardless of how old they are. Assuming only one rclone instance is running, you can reset the cache like this:</p>
<pre><code>kill -SIGHUP $(pidof rclone)</code></pre>
<p>If you configure rclone with a <a href="/rc">remote control</a> then you can use rclone rc to flush the whole directory cache:</p>
<pre><code>rclone rc vfs/forget</code></pre>
<p>Or individual files or directories:</p>
<pre><code>rclone rc vfs/forget file=path/to/file dir=path/to/dir</code></pre>
<h3 id="file-buffering-3">File Buffering</h3>
<p>The <code>--buffer-size</code> flag determines the amount of memory, that will be used to buffer data in advance.</p>
<p>Each open file descriptor will try to keep the specified amount of data in memory at all times. The buffered data is bound to one file descriptor and wont be shared between multiple open file descriptors of the same file.</p>
<p>This flag is a upper limit for the used memory per file descriptor. The buffer will only use memory for data that is downloaded but not not yet read. If the buffer is empty, only a small amount of memory will be used. The maximum memory used by rclone for buffering can be up to <code>--buffer-size * open files</code>.</p>
<h3 id="file-caching-3">File Caching</h3>
<p>These flags control the VFS file caching options. The VFS layer is used by rclone mount to make a cloud storage system work more like a normal file system.</p>
<p>Youll need to enable VFS caching if you want, for example, to read and write simultaneously to a file. See below for more details.</p>
<p>Note that the VFS cache works in addition to the cache backend and you may find that you need one or the other or both.</p>
<pre><code>--cache-dir string Directory rclone will use for caching.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-mode string Cache mode off|minimal|writes|full (default &quot;off&quot;)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-cache-max-size int Max total size of objects in the cache. (default off)</code></pre>
<p>If run with <code>-vv</code> rclone will print the location of the file cache. The files are stored in the user cache file area which is OS dependent but can be controlled with <code>--cache-dir</code> or setting the appropriate environment variable.</p>
<p>The cache has 4 different modes selected by <code>--vfs-cache-mode</code>. The higher the cache mode the more compatible rclone becomes at the cost of using disk space.</p>
<p>Note that files are written back to the remote only when they are closed so if rclone is quit or dies with open files then these wont get written back to the remote. However they will still be in the on disk cache.</p>
<p>If using vfs-cache-max-size note that the cache may exceed this size for two reasons. Firstly because it is only checked every vfs-cache-poll-interval. Secondly because open files cannot be evicted from the cache.</p>
<h4 id="vfs-cache-mode-off-3">vfs-cache-mode off</h4>
<p>In this mode the cache will read directly from the remote and write directly to the remote without caching anything on disk.</p>
<p>This will mean some operations are not possible</p>
<ul>
<li>Files cant be opened for both read AND write</li>
<li>Files opened for write cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files open for read with O_TRUNC will be opened write only</li>
<li>Files open for write only will behave as if O_TRUNC was supplied</li>
<li>Open modes O_APPEND, O_TRUNC are ignored</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-minimal-3">vfs-cache-mode minimal</h4>
<p>This is very similar to “off” except that files opened for read AND write will be buffered to disks. This means that files opened for write will be a lot more compatible, but uses the minimal disk space.</p>
<p>These operations are not possible</p>
<ul>
<li>Files opened for write only cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files opened for write only will ignore O_APPEND, O_TRUNC</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-writes-3">vfs-cache-mode writes</h4>
<p>In this mode files opened for read only are still read directly from the remote, write only and read/write files are buffered to disk first.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload fails it will be retried up to low-level-retries times.</p>
<h4 id="vfs-cache-mode-full-3">vfs-cache-mode full</h4>
<p>In this mode all reads and writes are buffered to and from disk. When a file is opened for read it will be downloaded in its entirety first.</p>
<p>This may be appropriate for your needs, or you may prefer to look at the cache backend which does a much more sophisticated job of caching, including caching directory hierarchies and chunks of files.</p>
<p>In this mode, unlike the others, when a file is written to the disk, it will be kept on the disk after it is written to the remote. It will be purged on a schedule according to <code>--vfs-cache-max-age</code>.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload or download fails it will be retried up to low-level-retries times.</p>
<pre><code>rclone serve http remote:path [flags]</code></pre>
<h3 id="options-57">Options</h3>
<pre><code> --addr string IPaddress:Port or :Port to bind server to. (default &quot;localhost:8080&quot;)
--cert string SSL PEM key (concatenation of certificate and CA certificate)
--client-ca string Client certificate authority to verify clients with
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
--dir-perms FileMode Directory permissions (default 0777)
--file-perms FileMode File permissions (default 0666)
--gid uint32 Override the gid field set by the filesystem. (default 1000)
-h, --help help for http
--htpasswd string htpasswd file - if not provided no authentication is done
--key string SSL PEM Private key
--max-header-bytes int Maximum size of request header (default 4096)
--no-checksum Don&#39;t compare checksums on up/download.
--no-modtime Don&#39;t read/write the modification time (can speed things up).
--no-seek Don&#39;t allow seeking in files.
--pass string Password for authentication.
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
--read-only Mount read-only.
--realm string realm for authentication (default &quot;rclone&quot;)
--server-read-timeout duration Timeout for server reading data (default 1h0m0s)
--server-write-timeout duration Timeout for server writing data (default 1h0m0s)
--uid uint32 Override the uid field set by the filesystem. (default 1000)
--umask int Override the permission bits set by the filesystem. (default 2)
--user string User name for authentication.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
--vfs-cache-mode CacheMode Cache mode off|minimal|writes|full (default off)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-read-chunk-size SizeSuffix Read the source objects in chunks. (default 128M)
--vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. &#39;off&#39; is unlimited. (default off)</code></pre>
<h3 id="see-also-57">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_serve/">rclone serve</a> - Serve a remote over a protocol.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-57">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-serve-restic">rclone serve restic</h2>
<p>Serve the remote for restics REST API.</p>
<h3 id="synopsis-58">Synopsis</h3>
<p>rclone serve restic implements restics REST backend API over HTTP. This allows restic to use rclone as a data storage mechanism for cloud providers that restic does not support directly.</p>
<p><a href="https://restic.net/">Restic</a> is a command line program for doing backups.</p>
<p>The server will log errors. Use -v to see access logs.</p>
<p>bwlimit will be respected for file transfers. Use stats to control the stats printing.</p>
<h3 id="setting-up-rclone-for-use-by-restic">Setting up rclone for use by restic</h3>
<p>First <a href="/docs/#configure">set up a remote for your chosen cloud provider</a>.</p>
<p>Once you have set up the remote, check it is working with, for example “rclone lsd remote:”. You may have called the remote something other than “remote:” - just substitute whatever you called it in the following instructions.</p>
<p>Now start the rclone restic server</p>
<pre><code>rclone serve restic -v remote:backup</code></pre>
<p>Where you can replace “backup” in the above by whatever path in the remote you wish to use.</p>
<p>By default this will serve on “localhost:8080” you can change this with use of the “addr” flag.</p>
<p>You might wish to start this server on boot.</p>
<h3 id="setting-up-restic-to-use-rclone">Setting up restic to use rclone</h3>
<p>Now you can <a href="http://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#rest-server">follow the restic instructions</a> on setting up restic.</p>
<p>Note that you will need restic 0.8.2 or later to interoperate with rclone.</p>
<p>For the example above you will want to use “http://localhost:8080/” as the URL for the REST server.</p>
<p>For example:</p>
<pre><code>$ export RESTIC_REPOSITORY=rest:http://localhost:8080/
$ export RESTIC_PASSWORD=yourpassword
$ restic init
created restic backend 8b1a4b56ae at rest:http://localhost:8080/
Please note that knowledge of your password is required to access
the repository. Losing your password means that your data is
irrecoverably lost.
$ restic backup /path/to/files/to/backup
scan [/path/to/files/to/backup]
scanned 189 directories, 312 files in 0:00
[0:00] 100.00% 38.128 MiB / 38.128 MiB 501 / 501 items 0 errors ETA 0:00
duration: 0:00
snapshot 45c8fdd8 saved</code></pre>
<h4 id="multiple-repositories">Multiple repositories</h4>
<p>Note that you can use the endpoint to host multiple repositories. Do this by adding a directory name or path after the URL. Note that these <strong>must</strong> end with /. Eg</p>
<pre><code>$ export RESTIC_REPOSITORY=rest:http://localhost:8080/user1repo/
# backup user1 stuff
$ export RESTIC_REPOSITORY=rest:http://localhost:8080/user2repo/
# backup user2 stuff</code></pre>
<h4 id="private-repositories">Private repositories</h4>
<p>The “private-repos” flag can be used to limit users to repositories starting with a path of “/<username>/”.</p>
<h3 id="server-options-3">Server options</h3>
<p>Use addr to specify which IP address and port the server should listen on, eg addr 1.2.3.4:8000 or addr :8080 to listen to all IPs. By default it only listens on localhost. You can use port :0 to let the OS choose an available port.</p>
<p>If you set addr to listen on a public or LAN accessible IP address then using Authentication is advised - see the next section for info.</p>
<p>server-read-timeout and server-write-timeout can be used to control the timeouts on the server. Note that this is the total time for a transfer.</p>
<p>max-header-bytes controls the maximum number of bytes the server will accept in the HTTP header.</p>
<h4 id="authentication-2">Authentication</h4>
<p>By default this will serve files without needing a login.</p>
<p>You can either use an htpasswd file which can take lots of users, or set a single username and password with the user and pass flags.</p>
<p>Use htpasswd /path/to/htpasswd to provide an htpasswd file. This is in standard apache format and supports MD5, SHA1 and BCrypt for basic authentication. Bcrypt is recommended.</p>
<p>To create an htpasswd file:</p>
<pre><code>touch htpasswd
htpasswd -B htpasswd user
htpasswd -B htpasswd anotherUser</code></pre>
<p>The password file can be updated while rclone is running.</p>
<p>Use realm to set the authentication realm.</p>
<h4 id="ssltls-1">SSL/TLS</h4>
<p>By default this will serve over http. If you want you can serve over https. You will need to supply the cert and key flags. If you wish to do client side certificate validation then you will need to supply client-ca also.</p>
<p>cert should be a either a PEM encoded certificate or a concatenation of that with the CA certificate. key should be the PEM encoded private key and client-ca should be the PEM encoded client certificate authority certificate.</p>
<pre><code>rclone serve restic remote:path [flags]</code></pre>
<h3 id="options-58">Options</h3>
<pre><code> --addr string IPaddress:Port or :Port to bind server to. (default &quot;localhost:8080&quot;)
--append-only disallow deletion of repository data
--cert string SSL PEM key (concatenation of certificate and CA certificate)
--client-ca string Client certificate authority to verify clients with
-h, --help help for restic
--htpasswd string htpasswd file - if not provided no authentication is done
--key string SSL PEM Private key
--max-header-bytes int Maximum size of request header (default 4096)
--pass string Password for authentication.
--private-repos users can only access their private repo
--realm string realm for authentication (default &quot;rclone&quot;)
--server-read-timeout duration Timeout for server reading data (default 1h0m0s)
--server-write-timeout duration Timeout for server writing data (default 1h0m0s)
--stdio run an HTTP2 server on stdin/stdout
--user string User name for authentication.</code></pre>
<h3 id="see-also-58">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_serve/">rclone serve</a> - Serve a remote over a protocol.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-58">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-serve-sftp">rclone serve sftp</h2>
<p>Serve the remote over SFTP.</p>
<h3 id="synopsis-59">Synopsis</h3>
<p>rclone serve sftp implements an SFTP server to serve the remote over SFTP. This can be used with an SFTP client or you can make a remote of type sftp to use with it.</p>
<p>You can use the filter flags (eg include, exclude) to control what is served.</p>
<p>The server will log errors. Use -v to see access logs.</p>
<p>bwlimit will be respected for file transfers. Use stats to control the stats printing.</p>
<p>You must provide some means of authentication, either with user/pass, an authorized keys file (specify location with authorized-keys - the default is the same as ssh) or set the no-auth flag for no authentication when logging in.</p>
<p>Note that this also implements a small number of shell commands so that it can provide md5sum/sha1sum/df information for the rclone sftp backend. This means that is can support SHA1SUMs, MD5SUMs and the about command when paired with the rclone sftp backend.</p>
<p>If you dont supply a key then rclone will generate one and cache it for later use.</p>
<p>By default the server binds to localhost:2022 - if you want it to be reachable externally then supply “addr :2022” for example.</p>
<p>Note that the default of “vfs-cache-mode off” is fine for the rclone sftp backend, but it may not be with other SFTP clients.</p>
<h3 id="directory-cache-4">Directory Cache</h3>
<p>Using the <code>--dir-cache-time</code> flag, you can set how long a directory should be considered up to date and not refreshed from the backend. Changes made locally in the mount may appear immediately or invalidate the cache. However, changes done on the remote will only be picked up once the cache expires.</p>
<p>Alternatively, you can send a <code>SIGHUP</code> signal to rclone for it to flush all directory caches, regardless of how old they are. Assuming only one rclone instance is running, you can reset the cache like this:</p>
<pre><code>kill -SIGHUP $(pidof rclone)</code></pre>
<p>If you configure rclone with a <a href="/rc">remote control</a> then you can use rclone rc to flush the whole directory cache:</p>
<pre><code>rclone rc vfs/forget</code></pre>
<p>Or individual files or directories:</p>
<pre><code>rclone rc vfs/forget file=path/to/file dir=path/to/dir</code></pre>
<h3 id="file-buffering-4">File Buffering</h3>
<p>The <code>--buffer-size</code> flag determines the amount of memory, that will be used to buffer data in advance.</p>
<p>Each open file descriptor will try to keep the specified amount of data in memory at all times. The buffered data is bound to one file descriptor and wont be shared between multiple open file descriptors of the same file.</p>
<p>This flag is a upper limit for the used memory per file descriptor. The buffer will only use memory for data that is downloaded but not not yet read. If the buffer is empty, only a small amount of memory will be used. The maximum memory used by rclone for buffering can be up to <code>--buffer-size * open files</code>.</p>
<h3 id="file-caching-4">File Caching</h3>
<p>These flags control the VFS file caching options. The VFS layer is used by rclone mount to make a cloud storage system work more like a normal file system.</p>
<p>Youll need to enable VFS caching if you want, for example, to read and write simultaneously to a file. See below for more details.</p>
<p>Note that the VFS cache works in addition to the cache backend and you may find that you need one or the other or both.</p>
<pre><code>--cache-dir string Directory rclone will use for caching.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-mode string Cache mode off|minimal|writes|full (default &quot;off&quot;)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-cache-max-size int Max total size of objects in the cache. (default off)</code></pre>
<p>If run with <code>-vv</code> rclone will print the location of the file cache. The files are stored in the user cache file area which is OS dependent but can be controlled with <code>--cache-dir</code> or setting the appropriate environment variable.</p>
<p>The cache has 4 different modes selected by <code>--vfs-cache-mode</code>. The higher the cache mode the more compatible rclone becomes at the cost of using disk space.</p>
<p>Note that files are written back to the remote only when they are closed so if rclone is quit or dies with open files then these wont get written back to the remote. However they will still be in the on disk cache.</p>
<p>If using vfs-cache-max-size note that the cache may exceed this size for two reasons. Firstly because it is only checked every vfs-cache-poll-interval. Secondly because open files cannot be evicted from the cache.</p>
<h4 id="vfs-cache-mode-off-4">vfs-cache-mode off</h4>
<p>In this mode the cache will read directly from the remote and write directly to the remote without caching anything on disk.</p>
<p>This will mean some operations are not possible</p>
<ul>
<li>Files cant be opened for both read AND write</li>
<li>Files opened for write cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files open for read with O_TRUNC will be opened write only</li>
<li>Files open for write only will behave as if O_TRUNC was supplied</li>
<li>Open modes O_APPEND, O_TRUNC are ignored</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-minimal-4">vfs-cache-mode minimal</h4>
<p>This is very similar to “off” except that files opened for read AND write will be buffered to disks. This means that files opened for write will be a lot more compatible, but uses the minimal disk space.</p>
<p>These operations are not possible</p>
<ul>
<li>Files opened for write only cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files opened for write only will ignore O_APPEND, O_TRUNC</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-writes-4">vfs-cache-mode writes</h4>
<p>In this mode files opened for read only are still read directly from the remote, write only and read/write files are buffered to disk first.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload fails it will be retried up to low-level-retries times.</p>
<h4 id="vfs-cache-mode-full-4">vfs-cache-mode full</h4>
<p>In this mode all reads and writes are buffered to and from disk. When a file is opened for read it will be downloaded in its entirety first.</p>
<p>This may be appropriate for your needs, or you may prefer to look at the cache backend which does a much more sophisticated job of caching, including caching directory hierarchies and chunks of files.</p>
<p>In this mode, unlike the others, when a file is written to the disk, it will be kept on the disk after it is written to the remote. It will be purged on a schedule according to <code>--vfs-cache-max-age</code>.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload or download fails it will be retried up to low-level-retries times.</p>
<pre><code>rclone serve sftp remote:path [flags]</code></pre>
<h3 id="options-59">Options</h3>
<pre><code> --addr string IPaddress:Port or :Port to bind server to. (default &quot;localhost:2022&quot;)
--authorized-keys string Authorized keys file (default &quot;~/.ssh/authorized_keys&quot;)
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
--dir-perms FileMode Directory permissions (default 0777)
--file-perms FileMode File permissions (default 0666)
--gid uint32 Override the gid field set by the filesystem. (default 1000)
-h, --help help for sftp
--key string SSH private key file (leave blank to auto generate)
--no-auth Allow connections with no authentication if set.
--no-checksum Don&#39;t compare checksums on up/download.
--no-modtime Don&#39;t read/write the modification time (can speed things up).
--no-seek Don&#39;t allow seeking in files.
--pass string Password for authentication.
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
--read-only Mount read-only.
--uid uint32 Override the uid field set by the filesystem. (default 1000)
--umask int Override the permission bits set by the filesystem. (default 2)
--user string User name for authentication.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
--vfs-cache-mode CacheMode Cache mode off|minimal|writes|full (default off)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-read-chunk-size SizeSuffix Read the source objects in chunks. (default 128M)
--vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. &#39;off&#39; is unlimited. (default off)</code></pre>
<h3 id="see-also-59">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_serve/">rclone serve</a> - Serve a remote over a protocol.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-59">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-serve-webdav">rclone serve webdav</h2>
<p>Serve remote:path over webdav.</p>
<h3 id="synopsis-60">Synopsis</h3>
<p>rclone serve webdav implements a basic webdav server to serve the remote over HTTP via the webdav protocol. This can be viewed with a webdav client, through a web browser, or you can make a remote of type webdav to read and write it.</p>
<h3 id="webdav-options">Webdav options</h3>
<h4 id="etag-hash">etag-hash</h4>
<p>This controls the ETag header. Without this flag the ETag will be based on the ModTime and Size of the object.</p>
<p>If this flag is set to “auto” then rclone will choose the first supported hash on the backend or you can use a named hash such as “MD5” or “SHA-1”.</p>
<p>Use “rclone hashsum” to see the full list.</p>
<h3 id="server-options-4">Server options</h3>
<p>Use addr to specify which IP address and port the server should listen on, eg addr 1.2.3.4:8000 or addr :8080 to listen to all IPs. By default it only listens on localhost. You can use port :0 to let the OS choose an available port.</p>
<p>If you set addr to listen on a public or LAN accessible IP address then using Authentication is advised - see the next section for info.</p>
<p>server-read-timeout and server-write-timeout can be used to control the timeouts on the server. Note that this is the total time for a transfer.</p>
<p>max-header-bytes controls the maximum number of bytes the server will accept in the HTTP header.</p>
<h4 id="authentication-3">Authentication</h4>
<p>By default this will serve files without needing a login.</p>
<p>You can either use an htpasswd file which can take lots of users, or set a single username and password with the user and pass flags.</p>
<p>Use htpasswd /path/to/htpasswd to provide an htpasswd file. This is in standard apache format and supports MD5, SHA1 and BCrypt for basic authentication. Bcrypt is recommended.</p>
<p>To create an htpasswd file:</p>
<pre><code>touch htpasswd
htpasswd -B htpasswd user
htpasswd -B htpasswd anotherUser</code></pre>
<p>The password file can be updated while rclone is running.</p>
<p>Use realm to set the authentication realm.</p>
<h4 id="ssltls-2">SSL/TLS</h4>
<p>By default this will serve over http. If you want you can serve over https. You will need to supply the cert and key flags. If you wish to do client side certificate validation then you will need to supply client-ca also.</p>
<p>cert should be a either a PEM encoded certificate or a concatenation of that with the CA certificate. key should be the PEM encoded private key and client-ca should be the PEM encoded client certificate authority certificate.</p>
<h3 id="directory-cache-5">Directory Cache</h3>
<p>Using the <code>--dir-cache-time</code> flag, you can set how long a directory should be considered up to date and not refreshed from the backend. Changes made locally in the mount may appear immediately or invalidate the cache. However, changes done on the remote will only be picked up once the cache expires.</p>
<p>Alternatively, you can send a <code>SIGHUP</code> signal to rclone for it to flush all directory caches, regardless of how old they are. Assuming only one rclone instance is running, you can reset the cache like this:</p>
<pre><code>kill -SIGHUP $(pidof rclone)</code></pre>
<p>If you configure rclone with a <a href="/rc">remote control</a> then you can use rclone rc to flush the whole directory cache:</p>
<pre><code>rclone rc vfs/forget</code></pre>
<p>Or individual files or directories:</p>
<pre><code>rclone rc vfs/forget file=path/to/file dir=path/to/dir</code></pre>
<h3 id="file-buffering-5">File Buffering</h3>
<p>The <code>--buffer-size</code> flag determines the amount of memory, that will be used to buffer data in advance.</p>
<p>Each open file descriptor will try to keep the specified amount of data in memory at all times. The buffered data is bound to one file descriptor and wont be shared between multiple open file descriptors of the same file.</p>
<p>This flag is a upper limit for the used memory per file descriptor. The buffer will only use memory for data that is downloaded but not not yet read. If the buffer is empty, only a small amount of memory will be used. The maximum memory used by rclone for buffering can be up to <code>--buffer-size * open files</code>.</p>
<h3 id="file-caching-5">File Caching</h3>
<p>These flags control the VFS file caching options. The VFS layer is used by rclone mount to make a cloud storage system work more like a normal file system.</p>
<p>Youll need to enable VFS caching if you want, for example, to read and write simultaneously to a file. See below for more details.</p>
<p>Note that the VFS cache works in addition to the cache backend and you may find that you need one or the other or both.</p>
<pre><code>--cache-dir string Directory rclone will use for caching.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-mode string Cache mode off|minimal|writes|full (default &quot;off&quot;)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-cache-max-size int Max total size of objects in the cache. (default off)</code></pre>
<p>If run with <code>-vv</code> rclone will print the location of the file cache. The files are stored in the user cache file area which is OS dependent but can be controlled with <code>--cache-dir</code> or setting the appropriate environment variable.</p>
<p>The cache has 4 different modes selected by <code>--vfs-cache-mode</code>. The higher the cache mode the more compatible rclone becomes at the cost of using disk space.</p>
<p>Note that files are written back to the remote only when they are closed so if rclone is quit or dies with open files then these wont get written back to the remote. However they will still be in the on disk cache.</p>
<p>If using vfs-cache-max-size note that the cache may exceed this size for two reasons. Firstly because it is only checked every vfs-cache-poll-interval. Secondly because open files cannot be evicted from the cache.</p>
<h4 id="vfs-cache-mode-off-5">vfs-cache-mode off</h4>
<p>In this mode the cache will read directly from the remote and write directly to the remote without caching anything on disk.</p>
<p>This will mean some operations are not possible</p>
<ul>
<li>Files cant be opened for both read AND write</li>
<li>Files opened for write cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files open for read with O_TRUNC will be opened write only</li>
<li>Files open for write only will behave as if O_TRUNC was supplied</li>
<li>Open modes O_APPEND, O_TRUNC are ignored</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-minimal-5">vfs-cache-mode minimal</h4>
<p>This is very similar to “off” except that files opened for read AND write will be buffered to disks. This means that files opened for write will be a lot more compatible, but uses the minimal disk space.</p>
<p>These operations are not possible</p>
<ul>
<li>Files opened for write only cant be seeked</li>
<li>Existing files opened for write must have O_TRUNC set</li>
<li>Files opened for write only will ignore O_APPEND, O_TRUNC</li>
<li>If an upload fails it cant be retried</li>
</ul>
<h4 id="vfs-cache-mode-writes-5">vfs-cache-mode writes</h4>
<p>In this mode files opened for read only are still read directly from the remote, write only and read/write files are buffered to disk first.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload fails it will be retried up to low-level-retries times.</p>
<h4 id="vfs-cache-mode-full-5">vfs-cache-mode full</h4>
<p>In this mode all reads and writes are buffered to and from disk. When a file is opened for read it will be downloaded in its entirety first.</p>
<p>This may be appropriate for your needs, or you may prefer to look at the cache backend which does a much more sophisticated job of caching, including caching directory hierarchies and chunks of files.</p>
<p>In this mode, unlike the others, when a file is written to the disk, it will be kept on the disk after it is written to the remote. It will be purged on a schedule according to <code>--vfs-cache-max-age</code>.</p>
<p>This mode should support all normal file system operations.</p>
<p>If an upload or download fails it will be retried up to low-level-retries times.</p>
<pre><code>rclone serve webdav remote:path [flags]</code></pre>
<h3 id="options-60">Options</h3>
<pre><code> --addr string IPaddress:Port or :Port to bind server to. (default &quot;localhost:8080&quot;)
--cert string SSL PEM key (concatenation of certificate and CA certificate)
--client-ca string Client certificate authority to verify clients with
--dir-cache-time duration Time to cache directory entries for. (default 5m0s)
--dir-perms FileMode Directory permissions (default 0777)
--disable-dir-list Disable HTML directory list on GET request for a directory
--etag-hash string Which hash to use for the ETag, or auto or blank for off
--file-perms FileMode File permissions (default 0666)
--gid uint32 Override the gid field set by the filesystem. (default 1000)
-h, --help help for webdav
--htpasswd string htpasswd file - if not provided no authentication is done
--key string SSL PEM Private key
--max-header-bytes int Maximum size of request header (default 4096)
--no-checksum Don&#39;t compare checksums on up/download.
--no-modtime Don&#39;t read/write the modification time (can speed things up).
--no-seek Don&#39;t allow seeking in files.
--pass string Password for authentication.
--poll-interval duration Time to wait between polling for changes. Must be smaller than dir-cache-time. Only on supported remotes. Set to 0 to disable. (default 1m0s)
--read-only Mount read-only.
--realm string realm for authentication (default &quot;rclone&quot;)
--server-read-timeout duration Timeout for server reading data (default 1h0m0s)
--server-write-timeout duration Timeout for server writing data (default 1h0m0s)
--uid uint32 Override the uid field set by the filesystem. (default 1000)
--umask int Override the permission bits set by the filesystem. (default 2)
--user string User name for authentication.
--vfs-cache-max-age duration Max age of objects in the cache. (default 1h0m0s)
--vfs-cache-max-size SizeSuffix Max total size of objects in the cache. (default off)
--vfs-cache-mode CacheMode Cache mode off|minimal|writes|full (default off)
--vfs-cache-poll-interval duration Interval to poll the cache for stale objects. (default 1m0s)
--vfs-read-chunk-size SizeSuffix Read the source objects in chunks. (default 128M)
--vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached. &#39;off&#39; is unlimited. (default off)</code></pre>
<h3 id="see-also-60">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone_serve/">rclone serve</a> - Serve a remote over a protocol.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-60">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-settier">rclone settier</h2>
<p>Changes storage class/tier of objects in remote.</p>
<h3 id="synopsis-61">Synopsis</h3>
<p>rclone settier changes storage tier or class at remote if supported. Few cloud storage services provides different storage classes on objects, for example AWS S3 and Glacier, Azure Blob storage - Hot, Cool and Archive, Google Cloud Storage, Regional Storage, Nearline, Coldline etc.</p>
<p>Note that, certain tier changes make objects not available to access immediately. For example tiering to archive in azure blob storage makes objects in frozen state, user can restore by setting tier to Hot/Cool, similarly S3 to Glacier makes object inaccessible.true</p>
<p>You can use it to tier single object</p>
<pre><code>rclone settier Cool remote:path/file</code></pre>
<p>Or use rclone filters to set tier on only specific files</p>
<pre><code>rclone --include &quot;*.txt&quot; settier Hot remote:path/dir</code></pre>
<p>Or just provide remote directory and all files in directory will be tiered</p>
<pre><code>rclone settier tier remote:path/dir</code></pre>
<pre><code>rclone settier tier remote:path [flags]</code></pre>
<h3 id="options-61">Options</h3>
<pre><code> -h, --help help for settier</code></pre>
<h3 id="see-also-61">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-61">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-touch">rclone touch</h2>
<p>Create new file or change file modification time.</p>
<h3 id="synopsis-62">Synopsis</h3>
<p>Create new file or change file modification time.</p>
<pre><code>rclone touch remote:path [flags]</code></pre>
<h3 id="options-62">Options</h3>
<pre><code> -h, --help help for touch
-C, --no-create Do not create the file if it does not exist.
-t, --timestamp string Change the modification times to the specified time instead of the current time of day. The argument is of the form &#39;YYMMDD&#39; (ex. 17.10.30) or &#39;YYYY-MM-DDTHH:MM:SS&#39; (ex. 2006-01-02T15:04:05)</code></pre>
<h3 id="see-also-62">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-62">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="rclone-tree">rclone tree</h2>
<p>List the contents of the remote in a tree like fashion.</p>
<h3 id="synopsis-63">Synopsis</h3>
<p>rclone tree lists the contents of a remote in a similar way to the unix tree command.</p>
<p>For example</p>
<pre><code>$ rclone tree remote:path
/
├── file1
├── file2
├── file3
└── subdir
├── file4
└── file5
1 directories, 5 files</code></pre>
<p>You can use any of the filtering options with the tree command (eg include and exclude). You can also use fast-list.</p>
<p>The tree command has many options for controlling the listing which are compatible with the tree command. Note that not all of them have short options as they conflict with rclones short options.</p>
<pre><code>rclone tree remote:path [flags]</code></pre>
<h3 id="options-63">Options</h3>
<pre><code> -a, --all All files are listed (list . files too).
-C, --color Turn colorization on always.
-d, --dirs-only List directories only.
--dirsfirst List directories before files (-U disables).
--full-path Print the full path prefix for each file.
-h, --help help for tree
--human Print the size in a more human readable way.
--level int Descend only level directories deep.
-D, --modtime Print the date of last modification.
-i, --noindent Don&#39;t print indentation lines.
--noreport Turn off file/directory count at end of tree listing.
-o, --output string Output to file instead of stdout.
-p, --protections Print the protections for each file.
-Q, --quote Quote filenames with double quotes.
-s, --size Print the size in bytes of each file.
--sort string Select sort: name,version,size,mtime,ctime.
--sort-ctime Sort files by last status change time.
-t, --sort-modtime Sort files by last modification time.
-r, --sort-reverse Reverse the order of the sort.
-U, --unsorted Leave files unsorted.
--version Sort files alphanumerically by version.</code></pre>
<h3 id="see-also-63">SEE ALSO</h3>
<ul>
<li><a href="https://rclone.org/commands/rclone/">rclone</a> - Show help for rclone commands, flags and backends.</li>
</ul>
<h6 id="auto-generated-by-spf13cobra-on-15-jun-2019-63">Auto generated by spf13/cobra on 15-Jun-2019</h6>
<h2 id="copying-single-files">Copying single files</h2>
<p>rclone normally syncs or copies directories. However, if the source remote points to a file, rclone will just copy that file. The destination remote must point to a directory - rclone will give the error <code>Failed to create file system for &quot;remote:file&quot;: is a file not a directory</code> if it isnt.</p>
<p>For example, suppose you have a remote with a file in called <code>test.jpg</code>, then you could copy just that file like this</p>
<pre><code>rclone copy remote:test.jpg /tmp/download</code></pre>
<p>The file <code>test.jpg</code> will be placed inside <code>/tmp/download</code>.</p>
<p>This is equivalent to specifying</p>
<pre><code>rclone copy --files-from /tmp/files remote: /tmp/download</code></pre>
<p>Where <code>/tmp/files</code> contains the single line</p>
<pre><code>test.jpg</code></pre>
<p>It is recommended to use <code>copy</code> when copying individual files, not <code>sync</code>. They have pretty much the same effect but <code>copy</code> will use a lot less memory.</p>
<h2 id="syntax-of-remote-paths">Syntax of remote paths</h2>
<p>The syntax of the paths passed to the rclone command are as follows.</p>
<h3 id="pathtodir">/path/to/dir</h3>
<p>This refers to the local file system.</p>
<p>On Windows only <code>\</code> may be used instead of <code>/</code> in local paths <strong>only</strong>, non local paths must use <code>/</code>.</p>
<p>These paths neednt start with a leading <code>/</code> - if they dont then they will be relative to the current directory.</p>
<h3 id="remotepathtodir">remote:path/to/dir</h3>
<p>This refers to a directory <code>path/to/dir</code> on <code>remote:</code> as defined in the config file (configured with <code>rclone config</code>).</p>
<h3 id="remotepathtodir-1">remote:/path/to/dir</h3>
<p>On most backends this is refers to the same directory as <code>remote:path/to/dir</code> and that format should be preferred. On a very small number of remotes (FTP, SFTP, Dropbox for business) this will refer to a different directory. On these, paths without a leading <code>/</code> will refer to your “home” directory and paths with a leading <code>/</code> will refer to the root.</p>
<h3 id="backendpathtodir">:backend:path/to/dir</h3>
<p>This is an advanced form for creating remotes on the fly. <code>backend</code> should be the name or prefix of a backend (the <code>type</code> in the config file) and all the configuration for the backend should be provided on the command line (or in environment variables).</p>
<p>Here are some examples:</p>
<pre><code>rclone lsd --http-url https://pub.rclone.org :http:</code></pre>
<p>To list all the directories in the root of <code>https://pub.rclone.org/</code>.</p>
<pre><code>rclone lsf --http-url https://example.com :http:path/to/dir</code></pre>
<p>To list files and directories in <code>https://example.com/path/to/dir/</code></p>
<pre><code>rclone copy --http-url https://example.com :http:path/to/dir /tmp/dir</code></pre>
<p>To copy files and directories in <code>https://example.com/path/to/dir</code> to <code>/tmp/dir</code>.</p>
<pre><code>rclone copy --sftp-host example.com :sftp:path/to/dir /tmp/dir</code></pre>
<p>To copy files and directories from <code>example.com</code> in the relative directory <code>path/to/dir</code> to <code>/tmp/dir</code> using sftp.</p>
<h2 id="quoting-and-the-shell">Quoting and the shell</h2>
<p>When you are typing commands to your computer you are using something called the command line shell. This interprets various characters in an OS specific way.</p>
<p>Here are some gotchas which may help users unfamiliar with the shell rules</p>
<h3 id="linux-osx">Linux / OSX</h3>
<p>If your names have spaces or shell metacharacters (eg <code>*</code>, <code>?</code>, <code>$</code>, <code>'</code>, <code>&quot;</code> etc) then you must quote them. Use single quotes <code>'</code> by default.</p>
<pre><code>rclone copy &#39;Important files?&#39; remote:backup</code></pre>
<p>If you want to send a <code>'</code> you will need to use <code>&quot;</code>, eg</p>
<pre><code>rclone copy &quot;O&#39;Reilly Reviews&quot; remote:backup</code></pre>
<p>The rules for quoting metacharacters are complicated and if you want the full details youll have to consult the manual page for your shell.</p>
<h3 id="windows">Windows</h3>
<p>If your names have spaces in you need to put them in <code>&quot;</code>, eg</p>
<pre><code>rclone copy &quot;E:\folder name\folder name\folder name&quot; remote:backup</code></pre>
<p>If you are using the root directory on its own then dont quote it (see <a href="https://github.com/rclone/rclone/issues/464">#464</a> for why), eg</p>
<pre><code>rclone copy E:\ remote:backup</code></pre>
<h2 id="copying-files-or-directories-with-in-the-names">Copying files or directories with <code>:</code> in the names</h2>
<p>rclone uses <code>:</code> to mark a remote name. This is, however, a valid filename component in non-Windows OSes. The remote name parser will only search for a <code>:</code> up to the first <code>/</code> so if you need to act on a file or directory like this then use the full path starting with a <code>/</code>, or use <code>./</code> as a current directory prefix.</p>
<p>So to sync a directory called <code>sync:me</code> to a remote called <code>remote:</code> use</p>
<pre><code>rclone sync ./sync:me remote:path</code></pre>
<p>or</p>
<pre><code>rclone sync /full/path/to/sync:me remote:path</code></pre>
<h2 id="server-side-copy">Server Side Copy</h2>
<p>Most remotes (but not all - see <a href="/overview/#optional-features">the overview</a>) support server side copy.</p>
<p>This means if you want to copy one folder to another then rclone wont download all the files and re-upload them; it will instruct the server to copy them in place.</p>
<p>Eg</p>
<pre><code>rclone copy s3:oldbucket s3:newbucket</code></pre>
<p>Will copy the contents of <code>oldbucket</code> to <code>newbucket</code> without downloading and re-uploading.</p>
<p>Remotes which dont support server side copy <strong>will</strong> download and re-upload in this case.</p>
<p>Server side copies are used with <code>sync</code> and <code>copy</code> and will be identified in the log when using the <code>-v</code> flag. The <code>move</code> command may also use them if remote doesnt support server side move directly. This is done by issuing a server side copy then a delete which is much quicker than a download and re-upload.</p>
<p>Server side copies will only be attempted if the remote names are the same.</p>
<p>This can be used when scripting to make aged backups efficiently, eg</p>
<pre><code>rclone sync remote:current-backup remote:previous-backup
rclone sync /path/to/files remote:current-backup</code></pre>
<h2 id="options-64">Options</h2>
<p>Rclone has a number of options to control its behaviour.</p>
<p>Options that take parameters can have the values passed in two ways, <code>--option=value</code> or <code>--option value</code>. However boolean (true/false) options behave slightly differently to the other options in that <code>--boolean</code> sets the option to <code>true</code> and the absence of the flag sets it to <code>false</code>. It is also possible to specify <code>--boolean=false</code> or <code>--boolean=true</code>. Note that <code>--boolean false</code> is not valid - this is parsed as <code>--boolean</code> and the <code>false</code> is parsed as an extra command line argument for rclone.</p>
<p>Options which use TIME use the go time parser. A duration string is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as “300ms”, “-1.5h” or “2h45m”. Valid time units are “ns”, “us” (or “µs”), “ms”, “s”, “m”, “h”.</p>
<p>Options which use SIZE use kByte by default. However, a suffix of <code>b</code> for bytes, <code>k</code> for kBytes, <code>M</code> for MBytes, <code>G</code> for GBytes, <code>T</code> for TBytes and <code>P</code> for PBytes may be used. These are the binary units, eg 1, 2**10, 2**20, 2**30 respectively.</p>
<h3 id="backup-dirdir">backup-dir=DIR</h3>
<p>When using <code>sync</code>, <code>copy</code> or <code>move</code> any files which would have been overwritten or deleted are moved in their original hierarchy into this directory.</p>
<p>If <code>--suffix</code> is set, then the moved files will have the suffix added to them. If there is a file with the same path (after the suffix has been added) in DIR, then it will be overwritten.</p>
<p>The remote in use must support server side move or copy and you must use the same remote as the destination of the sync. The backup directory must not overlap the destination directory.</p>
<p>For example</p>
<pre><code>rclone sync /path/to/local remote:current --backup-dir remote:old</code></pre>
<p>will sync <code>/path/to/local</code> to <code>remote:current</code>, but for any files which would have been updated or deleted will be stored in <code>remote:old</code>.</p>
<p>If running rclone from a script you might want to use todays date as the directory name passed to <code>--backup-dir</code> to store the old files, or you might want to pass <code>--suffix</code> with todays date.</p>
<h3 id="bind-string">bind string</h3>
<p>Local address to bind to for outgoing connections. This can be an IPv4 address (1.2.3.4), an IPv6 address (1234::789A) or host name. If the host name doesnt resolve or resolves to more than one IP address it will give an error.</p>
<h3 id="bwlimitbandwidth_spec">bwlimit=BANDWIDTH_SPEC</h3>
<p>This option controls the bandwidth limit. Limits can be specified in two ways: As a single limit, or as a timetable.</p>
<p>Single limits last for the duration of the session. To use a single limit, specify the desired bandwidth in kBytes/s, or use a suffix b|k|M|G. The default is <code>0</code> which means to not limit bandwidth.</p>
<p>For example, to limit bandwidth usage to 10 MBytes/s use <code>--bwlimit 10M</code></p>
<p>It is also possible to specify a “timetable” of limits, which will cause certain limits to be applied at certain times. To specify a timetable, format your entries as “WEEKDAY-HH:MM,BANDWIDTH WEEKDAY-HH:MM,BANDWIDTH…” where: WEEKDAY is optional element. It could be written as whole world or only using 3 first characters. HH:MM is an hour from 00:00 to 23:59.</p>
<p>An example of a typical timetable to avoid link saturation during daytime working hours could be:</p>
<p><code>--bwlimit &quot;08:00,512 12:00,10M 13:00,512 18:00,30M 23:00,off&quot;</code></p>
<p>In this example, the transfer bandwidth will be every day set to 512kBytes/sec at 8am. At noon, it will raise to 10Mbytes/s, and drop back to 512kBytes/sec at 1pm. At 6pm, the bandwidth limit will be set to 30MBytes/s, and at 11pm it will be completely disabled (full speed). Anything between 11pm and 8am will remain unlimited.</p>
<p>An example of timetable with WEEKDAY could be:</p>
<p><code>--bwlimit &quot;Mon-00:00,512 Fri-23:59,10M Sat-10:00,1M Sun-20:00,off&quot;</code></p>
<p>It mean that, the transfer bandwidth will be set to 512kBytes/sec on Monday. It will raise to 10Mbytes/s before the end of Friday. At 10:00 on Sunday it will be set to 1Mbyte/s. From 20:00 at Sunday will be unlimited.</p>
<p>Timeslots without weekday are extended to whole week. So this one example:</p>
<p><code>--bwlimit &quot;Mon-00:00,512 12:00,1M Sun-20:00,off&quot;</code></p>
<p>Is equal to this:</p>
<p><code>--bwlimit &quot;Mon-00:00,512Mon-12:00,1M Tue-12:00,1M Wed-12:00,1M Thu-12:00,1M Fri-12:00,1M Sat-12:00,1M Sun-12:00,1M Sun-20:00,off&quot;</code></p>
<p>Bandwidth limits only apply to the data transfer. They dont apply to the bandwidth of the directory listings etc.</p>
<p>Note that the units are Bytes/s, not Bits/s. Typically connections are measured in Bits/s - to convert divide by 8. For example, lets say you have a 10 Mbit/s connection and you wish rclone to use half of it - 5 Mbit/s. This is 5/8 = 0.625MByte/s so you would use a <code>--bwlimit 0.625M</code> parameter for rclone.</p>
<p>On Unix systems (Linux, MacOS, …) the bandwidth limiter can be toggled by sending a <code>SIGUSR2</code> signal to rclone. This allows to remove the limitations of a long running rclone transfer and to restore it back to the value specified with <code>--bwlimit</code> quickly when needed. Assuming there is only one rclone instance running, you can toggle the limiter like this:</p>
<pre><code>kill -SIGUSR2 $(pidof rclone)</code></pre>
<p>If you configure rclone with a <a href="/rc">remote control</a> then you can use change the bwlimit dynamically:</p>
<pre><code>rclone rc core/bwlimit rate=1M</code></pre>
<h3 id="buffer-sizesize">buffer-size=SIZE</h3>
<p>Use this sized buffer to speed up file transfers. Each <code>--transfer</code> will use this much memory for buffering.</p>
<p>When using <code>mount</code> or <code>cmount</code> each open file descriptor will use this much memory for buffering. See the <a href="/commands/rclone_mount/#file-buffering">mount</a> documentation for more details.</p>
<p>Set to 0 to disable the buffering for the minimum memory usage.</p>
<p>Note that the memory allocation of the buffers is influenced by the <a href="#use-mmap">use-mmap</a> flag.</p>
<h3 id="checkersn">checkers=N</h3>
<p>The number of checkers to run in parallel. Checkers do the equality checking of files during a sync. For some storage systems (eg S3, Swift, Dropbox) this can take a significant amount of time so they are run in parallel.</p>
<p>The default is to run 8 checkers in parallel.</p>
<h3 id="c-checksum">-c, checksum</h3>
<p>Normally rclone will look at modification time and size of files to see if they are equal. If you set this flag then rclone will check the file hash and size to determine if files are equal.</p>
<p>This is useful when the remote doesnt support setting modified time and a more accurate sync is desired than just checking the file size.</p>
<p>This is very useful when transferring between remotes which store the same hash type on the object, eg Drive and Swift. For details of which remotes support which hash type see the table in the <a href="https://rclone.org/overview/">overview section</a>.</p>
<p>Eg <code>rclone --checksum sync s3:/bucket swift:/bucket</code> would run much quicker than without the <code>--checksum</code> flag.</p>
<p>When using this flag, rclone wont update mtimes of remote files if they are incorrect as it would normally.</p>
<h3 id="configconfig_file">config=CONFIG_FILE</h3>
<p>Specify the location of the rclone config file.</p>
<p>Normally the config file is in your home directory as a file called <code>.config/rclone/rclone.conf</code> (or <code>.rclone.conf</code> if created with an older version). If <code>$XDG_CONFIG_HOME</code> is set it will be at <code>$XDG_CONFIG_HOME/rclone/rclone.conf</code>.</p>
<p>If there is a file <code>rclone.conf</code> in the same directory as the rclone executable it will be preferred. This file must be created manually for Rclone to use it, it will never be created automatically.</p>
<p>If you run <code>rclone config file</code> you will see where the default location is for you.</p>
<p>Use this flag to override the config location, eg <code>rclone --config=&quot;.myconfig&quot; .config</code>.</p>
<h3 id="contimeouttime">contimeout=TIME</h3>
<p>Set the connection timeout. This should be in go time format which looks like <code>5s</code> for 5 seconds, <code>10m</code> for 10 minutes, or <code>3h30m</code>.</p>
<p>The connection timeout is the amount of time rclone will wait for a connection to go through to a remote object storage system. It is <code>1m</code> by default.</p>
<h3 id="dedupe-mode-mode">dedupe-mode MODE</h3>
<p>Mode to run dedupe command in. One of <code>interactive</code>, <code>skip</code>, <code>first</code>, <code>newest</code>, <code>oldest</code>, <code>rename</code>. The default is <code>interactive</code>. See the dedupe command for more information as to what these options mean.</p>
<h3 id="disable-featurefeature">disable FEATURE,FEATURE,…</h3>
<p>This disables a comma separated list of optional features. For example to disable server side move and server side copy use:</p>
<pre><code>--disable move,copy</code></pre>
<p>The features can be put in in any case.</p>
<p>To see a list of which features can be disabled use:</p>
<pre><code>--disable help</code></pre>
<p>See the overview <a href="/overview/#features">features</a> and <a href="/overview/#optional-features">optional features</a> to get an idea of which feature does what.</p>
<p>This flag can be useful for debugging and in exceptional circumstances (eg Google Drive limiting the total volume of Server Side Copies to 100GB/day).</p>
<h3 id="n-dry-run">-n, dry-run</h3>
<p>Do a trial run with no permanent changes. Use this to see what rclone would do without actually doing it. Useful when setting up the <code>sync</code> command which deletes files in the destination.</p>
<h3 id="ignore-case-sync">ignore-case-sync</h3>
<p>Using this option will cause rclone to ignore the case of the files when synchronizing so files will not be copied/synced when the existing filenames are the same, even if the casing is different.</p>
<h3 id="ignore-checksum">ignore-checksum</h3>
<p>Normally rclone will check that the checksums of transferred files match, and give an error “corrupted on transfer” if they dont.</p>
<p>You can use this option to skip that check. You should only use it if you have had the “corrupted on transfer” error message and you are sure you might want to transfer potentially corrupted data.</p>
<h3 id="ignore-existing">ignore-existing</h3>
<p>Using this option will make rclone unconditionally skip all files that exist on the destination, no matter the content of these files.</p>
<p>While this isnt a generally recommended option, it can be useful in cases where your files change due to encryption. However, it cannot correct partial transfers in case a transfer was interrupted.</p>
<h3 id="ignore-size">ignore-size</h3>
<p>Normally rclone will look at modification time and size of files to see if they are equal. If you set this flag then rclone will check only the modification time. If <code>--checksum</code> is set then it only checks the checksum.</p>
<p>It will also cause rclone to skip verifying the sizes are the same after transfer.</p>
<p>This can be useful for transferring files to and from OneDrive which occasionally misreports the size of image files (see <a href="https://github.com/rclone/rclone/issues/399">#399</a> for more info).</p>
<h3 id="i-ignore-times">-I, ignore-times</h3>
<p>Using this option will cause rclone to unconditionally upload all files regardless of the state of files on the destination.</p>
<p>Normally rclone would skip any files that have the same modification time and are the same size (or have the same checksum if using <code>--checksum</code>).</p>
<h3 id="immutable">immutable</h3>
<p>Treat source and destination files as immutable and disallow modification.</p>
<p>With this option set, files will be created and deleted as requested, but existing files will never be updated. If an existing file does not match between the source and destination, rclone will give the error <code>Source and destination exist but do not match: immutable file modified</code>.</p>
<p>Note that only commands which transfer files (e.g. <code>sync</code>, <code>copy</code>, <code>move</code>) are affected by this behavior, and only modification is disallowed. Files may still be deleted explicitly (e.g. <code>delete</code>, <code>purge</code>) or implicitly (e.g. <code>sync</code>, <code>move</code>). Use <code>copy --immutable</code> if it is desired to avoid deletion as well as modification.</p>
<p>This can be useful as an additional layer of protection for immutable or append-only data sets (notably backup archives), where modification implies corruption and should not be propagated.</p>
<h2 id="leave-root">leave-root</h2>
<p>During rmdirs it will not remove root directory, even if its empty.</p>
<h3 id="log-filefile">log-file=FILE</h3>
<p>Log all of rclones output to FILE. This is not active by default. This can be useful for tracking down problems with syncs in combination with the <code>-v</code> flag. See the <a href="#logging">Logging section</a> for more info.</p>
<p>Note that if you are using the <code>logrotate</code> program to manage rclones logs, then you should use the <code>copytruncate</code> option as rclone doesnt have a signal to rotate logs.</p>
<h3 id="log-format-list">log-format LIST</h3>
<p>Comma separated list of log format options. <code>date</code>, <code>time</code>, <code>microseconds</code>, <code>longfile</code>, <code>shortfile</code>, <code>UTC</code>. The default is “<code>date</code>,<code>time</code>”.</p>
<h3 id="log-level-level">log-level LEVEL</h3>
<p>This sets the log level for rclone. The default log level is <code>NOTICE</code>.</p>
<p><code>DEBUG</code> is equivalent to <code>-vv</code>. It outputs lots of debug info - useful for bug reports and really finding out what rclone is doing.</p>
<p><code>INFO</code> is equivalent to <code>-v</code>. It outputs information about each transfer and prints stats once a minute by default.</p>
<p><code>NOTICE</code> is the default log level if no logging flags are supplied. It outputs very little when things are working normally. It outputs warnings and significant events.</p>
<p><code>ERROR</code> is equivalent to <code>-q</code>. It only outputs error messages.</p>
<h3 id="low-level-retries-number">low-level-retries NUMBER</h3>
<p>This controls the number of low level retries rclone does.</p>
<p>A low level retry is used to retry a failing operation - typically one HTTP request. This might be uploading a chunk of a big file for example. You will see low level retries in the log with the <code>-v</code> flag.</p>
<p>This shouldnt need to be changed from the default in normal operations. However, if you get a lot of low level retries you may wish to reduce the value so rclone moves on to a high level retry (see the <code>--retries</code> flag) quicker.</p>
<p>Disable low level retries with <code>--low-level-retries 1</code>.</p>
<h3 id="max-backlogn">max-backlog=N</h3>
<p>This is the maximum allowable backlog of files in a sync/copy/move queued for being checked or transferred.</p>
<p>This can be set arbitrarily large. It will only use memory when the queue is in use. Note that it will use in the order of N kB of memory when the backlog is in use.</p>
<p>Setting this large allows rclone to calculate how many files are pending more accurately and give a more accurate estimated finish time.</p>
<p>Setting this small will make rclone more synchronous to the listings of the remote which may be desirable.</p>
<h3 id="max-deleten">max-delete=N</h3>
<p>This tells rclone not to delete more than N files. If that limit is exceeded then a fatal error will be generated and rclone will stop the operation in progress.</p>
<h3 id="max-depthn">max-depth=N</h3>
<p>This modifies the recursion depth for all the commands except purge.</p>
<p>So if you do <code>rclone --max-depth 1 ls remote:path</code> you will see only the files in the top level directory. Using <code>--max-depth 2</code> means you will see all the files in first two directory levels and so on.</p>
<p>For historical reasons the <code>lsd</code> command defaults to using a <code>--max-depth</code> of 1 - you can override this with the command line flag.</p>
<p>You can use this command to disable recursion (with <code>--max-depth 1</code>).</p>
<p>Note that if you use this with <code>sync</code> and <code>--delete-excluded</code> the files not recursed through are considered excluded and will be deleted on the destination. Test first with <code>--dry-run</code> if you are not sure what will happen.</p>
<h3 id="max-transfersize">max-transfer=SIZE</h3>
<p>Rclone will stop transferring when it has reached the size specified. Defaults to off.</p>
<p>When the limit is reached all transfers will stop immediately.</p>
<p>Rclone will exit with exit code 8 if the transfer limit is reached.</p>
<h3 id="modify-windowtime">modify-window=TIME</h3>
<p>When checking whether a file has been modified, this is the maximum allowed time difference that a file can have and still be considered equivalent.</p>
<p>The default is <code>1ns</code> unless this is overridden by a remote. For example OS X only stores modification times to the nearest second so if you are reading and writing to an OS X filing system this will be <code>1s</code> by default.</p>
<p>This command line flag allows you to override that computed default.</p>
<h3 id="multi-thread-cutoffsize">multi-thread-cutoff=SIZE</h3>
<p>When downloading files to the local backend above this size, rclone will use multiple threads to download the file. (default 250M)</p>
<p>Rclone preallocates the file (using <code>fallocate(FALLOC_FL_KEEP_SIZE)</code> on unix or <code>NTSetInformationFile</code> on Windows both of which takes no time) then each thread writes directly into the file at the correct place. This means that rclone wont create fragmented or sparse files and there wont be any assembly time at the end of the transfer.</p>
<p>The number of threads used to dowload is controlled by <code>--multi-thread-streams</code>.</p>
<p>Use <code>-vv</code> if you wish to see info about the threads.</p>
<p>This will work with the <code>sync</code>/<code>copy</code>/<code>move</code> commands and friends <code>copyto</code>/<code>moveto</code>. Multi thread downloads will be used with <code>rclone mount</code> and <code>rclone serve</code> if <code>--vfs-cache-mode</code> is set to <code>writes</code> or above.</p>
<p><strong>NB</strong> that this <strong>only</strong> works for a local destination but will work with any source.</p>
<h3 id="multi-thread-streamsn">multi-thread-streams=N</h3>
<p>When using multi thread downloads (see above <code>--multi-thread-cutoff</code>) this sets the maximum number of streams to use. Set to <code>0</code> to disable multi thread downloads. (Default 4)</p>
<p>Exactly how many streams rclone uses for the download depends on the size of the file. To calculate the number of download streams Rclone divides the size of the file by the <code>--multi-thread-cutoff</code> and rounds up, up to the maximum set with <code>--multi-thread-streams</code>.</p>
<p>So if <code>--multi-thread-cutoff 250MB</code> and <code>--multi-thread-streams 4</code> are in effect (the defaults):</p>
<ul>
<li>0MB.250MB files will be downloaded with 1 stream</li>
<li>250MB..500MB files will be downloaded with 2 streams</li>
<li>500MB..750MB files will be downloaded with 3 streams</li>
<li>750MB+ files will be downloaded with 4 streams</li>
</ul>
<h3 id="no-gzip-encoding">no-gzip-encoding</h3>
<p>Dont set <code>Accept-Encoding: gzip</code>. This means that rclone wont ask the server for compressed files automatically. Useful if youve set the server to return files with <code>Content-Encoding: gzip</code> but you uploaded compressed files.</p>
<p>There is no need to set this in normal operation, and doing so will decrease the network transfer efficiency of rclone.</p>
<h3 id="no-traverse">no-traverse</h3>
<p>The <code>--no-traverse</code> flag controls whether the destination file system is traversed when using the <code>copy</code> or <code>move</code> commands. <code>--no-traverse</code> is not compatible with <code>sync</code> and will be ignored if you supply it with <code>sync</code>.</p>
<p>If you are only copying a small number of files (or are filtering most of the files) and/or have a large number of files on the destination then <code>--no-traverse</code> will stop rclone listing the destination and save time.</p>
<p>However, if you are copying a large number of files, especially if you are doing a copy where lots of the files under consideration havent changed and wont need copying then you shouldnt use <code>--no-traverse</code>.</p>
<p>See <a href="https://rclone.org/commands/rclone_copy/">rclone copy</a> for an example of how to use it.</p>
<h3 id="no-update-modtime">no-update-modtime</h3>
<p>When using this flag, rclone wont update modification times of remote files if they are incorrect as it would normally.</p>
<p>This can be used if the remote is being synced with another tool also (eg the Google Drive client).</p>
<h3 id="p-progress">-P, progress</h3>
<p>This flag makes rclone update the stats in a static block in the terminal providing a realtime overview of the transfer.</p>
<p>Any log messages will scroll above the static block. Log messages will push the static block down to the bottom of the terminal where it will stay.</p>
<p>Normally this is updated every 500mS but this period can be overridden with the <code>--stats</code> flag.</p>
<p>This can be used with the <code>--stats-one-line</code> flag for a simpler display.</p>
<p>Note: On Windows until<a href="https://github.com/Azure/go-ansiterm/issues/26">this bug</a> is fixed all non-ASCII characters will be replaced with <code>.</code> when <code>--progress</code> is in use.</p>
<h3 id="q-quiet">-q, quiet</h3>
<p>Normally rclone outputs stats and a completion message. If you set this flag it will make as little output as possible.</p>
<h3 id="retries-int">retries int</h3>
<p>Retry the entire sync if it fails this many times it fails (default 3).</p>
<p>Some remotes can be unreliable and a few retries help pick up the files which didnt get transferred because of errors.</p>
<p>Disable retries with <code>--retries 1</code>.</p>
<h3 id="retries-sleeptime">retries-sleep=TIME</h3>
<p>This sets the interval between each retry specified by <code>--retries</code></p>
<p>The default is 0. Use 0 to disable.</p>
<h3 id="size-only">size-only</h3>
<p>Normally rclone will look at modification time and size of files to see if they are equal. If you set this flag then rclone will check only the size.</p>
<p>This can be useful transferring files from Dropbox which have been modified by the desktop sync client which doesnt set checksums of modification times in the same way as rclone.</p>
<h3 id="statstime">stats=TIME</h3>
<p>Commands which transfer data (<code>sync</code>, <code>copy</code>, <code>copyto</code>, <code>move</code>, <code>moveto</code>) will print data transfer stats at regular intervals to show their progress.</p>
<p>This sets the interval.</p>
<p>The default is <code>1m</code>. Use 0 to disable.</p>
<p>If you set the stats interval then all commands can show stats. This can be useful when running other commands, <code>check</code> or <code>mount</code> for example.</p>
<p>Stats are logged at <code>INFO</code> level by default which means they wont show at default log level <code>NOTICE</code>. Use <code>--stats-log-level NOTICE</code> or <code>-v</code> to make them show. See the <a href="#logging">Logging section</a> for more info on log levels.</p>
<p>Note that on macOS you can send a SIGINFO (which is normally ctrl-T in the terminal) to make the stats print immediately.</p>
<h3 id="stats-file-name-length-integer">stats-file-name-length integer</h3>
<p>By default, the <code>--stats</code> output will truncate file names and paths longer than 40 characters. This is equivalent to providing <code>--stats-file-name-length 40</code>. Use <code>--stats-file-name-length 0</code> to disable any truncation of file names printed by stats.</p>
<h3 id="stats-log-level-string">stats-log-level string</h3>
<p>Log level to show <code>--stats</code> output at. This can be <code>DEBUG</code>, <code>INFO</code>, <code>NOTICE</code>, or <code>ERROR</code>. The default is <code>INFO</code>. This means at the default level of logging which is <code>NOTICE</code> the stats wont show - if you want them to then use <code>--stats-log-level NOTICE</code>. See the <a href="#logging">Logging section</a> for more info on log levels.</p>
<h3 id="stats-one-line">stats-one-line</h3>
<p>When this is specified, rclone condenses the stats into a single line showing the most important stats only.</p>
<h3 id="stats-one-line-date">stats-one-line-date</h3>
<p>When this is specified, rclone enables the single-line stats and prepends the display with a date string. The default is <code>2006/01/02 15:04:05 -</code></p>
<h3 id="stats-one-line-date-format">stats-one-line-date-format</h3>
<p>When this is specified, rclone enables the single-line stats and prepends the display with a user-supplied date string. The date string MUST be enclosed in quotes. Follow <a href="https://golang.org/pkg/time/#Time.Format">golang specs</a> for date formatting syntax.</p>
<h3 id="stats-unitbitsbytes">stats-unit=bits|bytes</h3>
<p>By default, data transfer rates will be printed in bytes/second.</p>
<p>This option allows the data rate to be printed in bits/second.</p>
<p>Data transfer volume will still be reported in bytes.</p>
<p>The rate is reported as a binary unit, not SI unit. So 1 Mbit/s equals 1,048,576 bits/s and not 1,000,000 bits/s.</p>
<p>The default is <code>bytes</code>.</p>
<h3 id="suffixsuffix">suffix=SUFFIX</h3>
<p>This is for use with <code>--backup-dir</code> only. If this isnt set then <code>--backup-dir</code> will move files with their original name. If it is set then the files will have SUFFIX added on to them.</p>
<p>See <code>--backup-dir</code> for more info.</p>
<h3 id="suffix-keep-extension">suffix-keep-extension</h3>
<p>When using <code>--suffix</code>, setting this causes rclone put the SUFFIX before the extension of the files that it backs up rather than after.</p>
<p>So lets say we had <code>--suffix -2019-01-01</code>, without the flag <code>file.txt</code> would be backed up to <code>file.txt-2019-01-01</code> and with the flag it would be backed up to <code>file-2019-01-01.txt</code>. This can be helpful to make sure the suffixed files can still be opened.</p>
<h3 id="syslog">syslog</h3>
<p>On capable OSes (not Windows or Plan9) send all log output to syslog.</p>
<p>This can be useful for running rclone in a script or <code>rclone mount</code>.</p>
<h3 id="syslog-facility-string">syslog-facility string</h3>
<p>If using <code>--syslog</code> this sets the syslog facility (eg <code>KERN</code>, <code>USER</code>). See <code>man syslog</code> for a list of possible facilities. The default facility is <code>DAEMON</code>.</p>
<h3 id="tpslimit-float">tpslimit float</h3>
<p>Limit HTTP transactions per second to this. Default is 0 which is used to mean unlimited transactions per second.</p>
<p>For example to limit rclone to 10 HTTP transactions per second use <code>--tpslimit 10</code>, or to 1 transaction every 2 seconds use <code>--tpslimit 0.5</code>.</p>
<p>Use this when the number of transactions per second from rclone is causing a problem with the cloud storage provider (eg getting you banned or rate limited).</p>
<p>This can be very useful for <code>rclone mount</code> to control the behaviour of applications using it.</p>
<p>See also <code>--tpslimit-burst</code>.</p>
<h3 id="tpslimit-burst-int">tpslimit-burst int</h3>
<p>Max burst of transactions for <code>--tpslimit</code>. (default 1)</p>
<p>Normally <code>--tpslimit</code> will do exactly the number of transaction per second specified. However if you supply <code>--tps-burst</code> then rclone can save up some transactions from when it was idle giving a burst of up to the parameter supplied.</p>
<p>For example if you provide <code>--tpslimit-burst 10</code> then if rclone has been idle for more than 10*<code>--tpslimit</code> then it can do 10 transactions very quickly before they are limited again.</p>
<p>This may be used to increase performance of <code>--tpslimit</code> without changing the long term average number of transactions per second.</p>
<h3 id="track-renames">track-renames</h3>
<p>By default, rclone doesnt keep track of renamed files, so if you rename a file locally then sync it to a remote, rclone will delete the old file on the remote and upload a new copy.</p>
<p>If you use this flag, and the remote supports server side copy or server side move, and the source and destination have a compatible hash, then this will track renames during <code>sync</code> operations and perform renaming server-side.</p>
<p>Files will be matched by size and hash - if both match then a rename will be considered.</p>
<p>If the destination does not support server-side copy or move, rclone will fall back to the default behaviour and log an error level message to the console. Note: Encrypted destinations are not supported by <code>--track-renames</code>.</p>
<p>Note that <code>--track-renames</code> is incompatible with <code>--no-traverse</code> and that it uses extra memory to keep track of all the rename candidates.</p>
<p>Note also that <code>--track-renames</code> is incompatible with <code>--delete-before</code> and will select <code>--delete-after</code> instead of <code>--delete-during</code>.</p>
<h3 id="delete-beforeduringafter">delete-(before,during,after)</h3>
<p>This option allows you to specify when files on your destination are deleted when you sync folders.</p>
<p>Specifying the value <code>--delete-before</code> will delete all files present on the destination, but not on the source <em>before</em> starting the transfer of any new or updated files. This uses two passes through the file systems, one for the deletions and one for the copies.</p>
<p>Specifying <code>--delete-during</code> will delete files while checking and uploading files. This is the fastest option and uses the least memory.</p>
<p>Specifying <code>--delete-after</code> (the default value) will delay deletion of files until all new/updated files have been successfully transferred. The files to be deleted are collected in the copy pass then deleted after the copy pass has completed successfully. The files to be deleted are held in memory so this mode may use more memory. This is the safest mode as it will only delete files if there have been no errors subsequent to that. If there have been errors before the deletions start then you will get the message <code>not deleting files as there were IO errors</code>.</p>
<h3 id="fast-list">fast-list</h3>
<p>When doing anything which involves a directory listing (eg <code>sync</code>, <code>copy</code>, <code>ls</code> - in fact nearly every command), rclone normally lists a directory and processes it before using more directory lists to process any subdirectories. This can be parallelised and works very quickly using the least amount of memory.</p>
<p>However, some remotes have a way of listing all files beneath a directory in one (or a small number) of transactions. These tend to be the bucket based remotes (eg S3, B2, GCS, Swift, Hubic).</p>
<p>If you use the <code>--fast-list</code> flag then rclone will use this method for listing directories. This will have the following consequences for the listing:</p>
<ul>
<li>It <strong>will</strong> use fewer transactions (important if you pay for them)</li>
<li>It <strong>will</strong> use more memory. Rclone has to load the whole listing into memory.</li>
<li>It <em>may</em> be faster because it uses fewer transactions</li>
<li>It <em>may</em> be slower because it cant be parallelized</li>
</ul>
<p>rclone should always give identical results with and without <code>--fast-list</code>.</p>
<p>If you pay for transactions and can fit your entire sync listing into memory then <code>--fast-list</code> is recommended. If you have a very big sync to do then dont use <code>--fast-list</code> otherwise you will run out of memory.</p>
<p>If you use <code>--fast-list</code> on a remote which doesnt support it, then rclone will just ignore it.</p>
<h3 id="timeouttime">timeout=TIME</h3>
<p>This sets the IO idle timeout. If a transfer has started but then becomes idle for this long it is considered broken and disconnected.</p>
<p>The default is <code>5m</code>. Set to 0 to disable.</p>
<h3 id="transfersn">transfers=N</h3>
<p>The number of file transfers to run in parallel. It can sometimes be useful to set this to a smaller number if the remote is giving a lot of timeouts or bigger if you have lots of bandwidth and a fast remote.</p>
<p>The default is to run 4 file transfers in parallel.</p>
<h3 id="u-update">-u, update</h3>
<p>This forces rclone to skip any files which exist on the destination and have a modified time that is newer than the source file.</p>
<p>If an existing destination file has a modification time equal (within the computed modify window precision) to the source files, it will be updated if the sizes are different.</p>
<p>On remotes which dont support mod time directly the time checked will be the uploaded time. This means that if uploading to one of these remotes, rclone will skip any files which exist on the destination and have an uploaded time that is newer than the modification time of the source file.</p>
<p>This can be useful when transferring to a remote which doesnt support mod times directly as it is more accurate than a <code>--size-only</code> check and faster than using <code>--checksum</code>.</p>
<h3 id="use-mmap">use-mmap</h3>
<p>If this flag is set then rclone will use anonymous memory allocated by mmap on Unix based platforms and VirtualAlloc on Windows for its transfer buffers (size controlled by <code>--buffer-size</code>). Memory allocated like this does not go on the Go heap and can be returned to the OS immediately when it is finished with.</p>
<p>If this flag is not set then rclone will allocate and free the buffers using the Go memory allocator which may use more memory as memory pages are returned less aggressively to the OS.</p>
<p>It is possible this does not work well on all platforms so it is disabled by default; in the future it may be enabled by default.</p>
<h3 id="use-server-modtime">use-server-modtime</h3>
<p>Some object-store backends (e.g, Swift, S3) do not preserve file modification times (modtime). On these backends, rclone stores the original modtime as additional metadata on the object. By default it will make an API call to retrieve the metadata when the modtime is needed by an operation.</p>
<p>Use this flag to disable the extra API call and rely instead on the servers modified time. In cases such as a local to remote sync, knowing the local file is newer than the time it was last uploaded to the remote is sufficient. In those cases, this flag can speed up the process and reduce the number of API calls necessary.</p>
<h3 id="v--vv-verbose">-v, -vv, verbose</h3>
<p>With <code>-v</code> rclone will tell you about each file that is transferred and a small number of significant events.</p>
<p>With <code>-vv</code> rclone will become very verbose telling you about every file it considers and transfers. Please send bug reports with a log with this setting.</p>
<h3 id="v-version">-V, version</h3>
<p>Prints the version number</p>
<h2 id="ssltls-options">SSL/TLS options</h2>
<p>The outoing SSL/TLS connections rclone makes can be controlled with these options. For example this can be very useful with the HTTP or WebDAV backends. Rclone HTTP servers have their own set of configuration for SSL/TLS which you can find in their documentation.</p>
<h3 id="ca-cert-string">ca-cert string</h3>
<p>This loads the PEM encoded certificate authority certificate and uses it to verify the certificates of the servers rclone connects to.</p>
<p>If you have generated certificates signed with a local CA then you will need this flag to connect to servers using those certificates.</p>
<h3 id="client-cert-string">client-cert string</h3>
<p>This loads the PEM encoded client side certificate.</p>
<p>This is used for <a href="https://en.wikipedia.org/wiki/Mutual_authentication">mutual TLS authentication</a>.</p>
<p>The <code>--client-key</code> flag is required too when using this.</p>
<h3 id="client-key-string">client-key string</h3>
<p>This loads the PEM encoded client side private key used for mutual TLS authentication. Used in conjunction with <code>--client-cert</code>.</p>
<h3 id="no-check-certificatetruefalse">no-check-certificate=true/false</h3>
<p><code>--no-check-certificate</code> controls whether a client verifies the servers certificate chain and host name. If <code>--no-check-certificate</code> is true, TLS accepts any certificate presented by the server and any host name in that certificate. In this mode, TLS is susceptible to man-in-the-middle attacks.</p>
<p>This option defaults to <code>false</code>.</p>
<p><strong>This should be used only for testing.</strong></p>
<h2 id="configuration-encryption">Configuration Encryption</h2>
<p>Your configuration file contains information for logging in to your cloud services. This means that you should keep your <code>.rclone.conf</code> file in a secure location.</p>
<p>If you are in an environment where that isnt possible, you can add a password to your configuration. This means that you will have to enter the password every time you start rclone.</p>
<p>To add a password to your rclone configuration, execute <code>rclone config</code>.</p>
<pre><code>&gt;rclone config
Current remotes:
e) Edit existing remote
n) New remote
d) Delete remote
s) Set configuration password
q) Quit config
e/n/d/s/q&gt;</code></pre>
<p>Go into <code>s</code>, Set configuration password:</p>
<pre><code>e/n/d/s/q&gt; s
Your configuration is not encrypted.
If you add a password, you will protect your login information to cloud services.
a) Add Password
q) Quit to main menu
a/q&gt; a
Enter NEW configuration password:
password:
Confirm NEW password:
password:
Password set
Your configuration is encrypted.
c) Change Password
u) Unencrypt configuration
q) Quit to main menu
c/u/q&gt;</code></pre>
<p>Your configuration is now encrypted, and every time you start rclone you will now be asked for the password. In the same menu, you can change the password or completely remove encryption from your configuration.</p>
<p>There is no way to recover the configuration if you lose your password.</p>
<p>rclone uses <a href="https://godoc.org/golang.org/x/crypto/nacl/secretbox">nacl secretbox</a> which in turn uses XSalsa20 and Poly1305 to encrypt and authenticate your configuration with secret-key cryptography. The password is SHA-256 hashed, which produces the key for secretbox. The hashed password is not stored.</p>
<p>While this provides very good security, we do not recommend storing your encrypted rclone configuration in public if it contains sensitive information, maybe except if you use a very strong password.</p>
<p>If it is safe in your environment, you can set the <code>RCLONE_CONFIG_PASS</code> environment variable to contain your password, in which case it will be used for decrypting the configuration.</p>
<p>You can set this for a session from a script. For unix like systems save this to a file called <code>set-rclone-password</code>:</p>
<pre><code>#!/bin/echo Source this file don&#39;t run it
read -s RCLONE_CONFIG_PASS
export RCLONE_CONFIG_PASS</code></pre>
<p>Then source the file when you want to use it. From the shell you would do <code>source set-rclone-password</code>. It will then ask you for the password and set it in the environment variable.</p>
<p>If you are running rclone inside a script, you might want to disable password prompts. To do that, pass the parameter <code>--ask-password=false</code> to rclone. This will make rclone fail instead of asking for a password if <code>RCLONE_CONFIG_PASS</code> doesnt contain a valid password.</p>
<h2 id="developer-options">Developer options</h2>
<p>These options are useful when developing or debugging rclone. There are also some more remote specific options which arent documented here which are used for testing. These start with remote name eg <code>--drive-test-option</code> - see the docs for the remote in question.</p>
<h3 id="cpuprofilefile">cpuprofile=FILE</h3>
<p>Write CPU profile to file. This can be analysed with <code>go tool pprof</code>.</p>
<h4 id="dump-flagflagflag">dump flag,flag,flag</h4>
<p>The <code>--dump</code> flag takes a comma separated list of flags to dump info about. These are:</p>
<h4 id="dump-headers">dump headers</h4>
<p>Dump HTTP headers with <code>Authorization:</code> lines removed. May still contain sensitive info. Can be very verbose. Useful for debugging only.</p>
<p>Use <code>--dump auth</code> if you do want the <code>Authorization:</code> headers.</p>
<h4 id="dump-bodies">dump bodies</h4>
<p>Dump HTTP headers and bodies - may contain sensitive info. Can be very verbose. Useful for debugging only.</p>
<p>Note that the bodies are buffered in memory so dont use this for enormous files.</p>
<h4 id="dump-requests">dump requests</h4>
<p>Like <code>--dump bodies</code> but dumps the request bodies and the response headers. Useful for debugging download problems.</p>
<h4 id="dump-responses">dump responses</h4>
<p>Like <code>--dump bodies</code> but dumps the response bodies and the request headers. Useful for debugging upload problems.</p>
<h4 id="dump-auth">dump auth</h4>
<p>Dump HTTP headers - will contain sensitive info such as <code>Authorization:</code> headers - use <code>--dump headers</code> to dump without <code>Authorization:</code> headers. Can be very verbose. Useful for debugging only.</p>
<h4 id="dump-filters">dump filters</h4>
<p>Dump the filters to the output. Useful to see exactly what include and exclude options are filtering on.</p>
<h4 id="dump-goroutines">dump goroutines</h4>
<p>This dumps a list of the running go-routines at the end of the command to standard output.</p>
<h4 id="dump-openfiles">dump openfiles</h4>
<p>This dumps a list of the open files at the end of the command. It uses the <code>lsof</code> command to do that so youll need that installed to use it.</p>
<h3 id="memprofilefile">memprofile=FILE</h3>
<p>Write memory profile to file. This can be analysed with <code>go tool pprof</code>.</p>
<h2 id="filtering">Filtering</h2>
<p>For the filtering options</p>
<ul>
<li><code>--delete-excluded</code></li>
<li><code>--filter</code></li>
<li><code>--filter-from</code></li>
<li><code>--exclude</code></li>
<li><code>--exclude-from</code></li>
<li><code>--include</code></li>
<li><code>--include-from</code></li>
<li><code>--files-from</code></li>
<li><code>--min-size</code></li>
<li><code>--max-size</code></li>
<li><code>--min-age</code></li>
<li><code>--max-age</code></li>
<li><code>--dump filters</code></li>
</ul>
<p>See the <a href="https://rclone.org/filtering/">filtering section</a>.</p>
<h2 id="remote-control">Remote control</h2>
<p>For the remote control options and for instructions on how to remote control rclone</p>
<ul>
<li><code>--rc</code></li>
<li>and anything starting with <code>--rc-</code></li>
</ul>
<p>See <a href="https://rclone.org/rc/">the remote control section</a>.</p>
<h2 id="logging">Logging</h2>
<p>rclone has 4 levels of logging, <code>ERROR</code>, <code>NOTICE</code>, <code>INFO</code> and <code>DEBUG</code>.</p>
<p>By default, rclone logs to standard error. This means you can redirect standard error and still see the normal output of rclone commands (eg <code>rclone ls</code>).</p>
<p>By default, rclone will produce <code>Error</code> and <code>Notice</code> level messages.</p>
<p>If you use the <code>-q</code> flag, rclone will only produce <code>Error</code> messages.</p>
<p>If you use the <code>-v</code> flag, rclone will produce <code>Error</code>, <code>Notice</code> and <code>Info</code> messages.</p>
<p>If you use the <code>-vv</code> flag, rclone will produce <code>Error</code>, <code>Notice</code>, <code>Info</code> and <code>Debug</code> messages.</p>
<p>You can also control the log levels with the <code>--log-level</code> flag.</p>
<p>If you use the <code>--log-file=FILE</code> option, rclone will redirect <code>Error</code>, <code>Info</code> and <code>Debug</code> messages along with standard error to FILE.</p>
<p>If you use the <code>--syslog</code> flag then rclone will log to syslog and the <code>--syslog-facility</code> control which facility it uses.</p>
<p>Rclone prefixes all log messages with their level in capitals, eg INFO which makes it easy to grep the log file for different kinds of information.</p>
<h2 id="exit-code">Exit Code</h2>
<p>If any errors occur during the command execution, rclone will exit with a non-zero exit code. This allows scripts to detect when rclone operations have failed.</p>
<p>During the startup phase, rclone will exit immediately if an error is detected in the configuration. There will always be a log message immediately before exiting.</p>
<p>When rclone is running it will accumulate errors as it goes along, and only exit with a non-zero exit code if (after retries) there were still failed transfers. For every error counted there will be a high priority log message (visible with <code>-q</code>) showing the message and which file caused the problem. A high priority message is also shown when starting a retry so the user can see that any previous error messages may not be valid after the retry. If rclone has done a retry it will log a high priority message if the retry was successful.</p>
<h3 id="list-of-exit-codes">List of exit codes</h3>
<ul>
<li><code>0</code> - success</li>
<li><code>1</code> - Syntax or usage error</li>
<li><code>2</code> - Error not otherwise categorised</li>
<li><code>3</code> - Directory not found</li>
<li><code>4</code> - File not found</li>
<li><code>5</code> - Temporary error (one that more retries might fix) (Retry errors)</li>
<li><code>6</code> - Less serious errors (like 461 errors from dropbox) (NoRetry errors)</li>
<li><code>7</code> - Fatal error (one that more retries wont fix, like account suspended) (Fatal errors)</li>
<li><code>8</code> - Transfer exceeded - limit set by max-transfer reached</li>
</ul>
<h2 id="environment-variables">Environment Variables</h2>
<p>Rclone can be configured entirely using environment variables. These can be used to set defaults for options or config file entries.</p>
<h3 id="options-65">Options</h3>
<p>Every option in rclone can have its default set by environment variable.</p>
<p>To find the name of the environment variable, first, take the long option name, strip the leading <code>--</code>, change <code>-</code> to <code>_</code>, make upper case and prepend <code>RCLONE_</code>.</p>
<p>For example, to always set <code>--stats 5s</code>, set the environment variable <code>RCLONE_STATS=5s</code>. If you set stats on the command line this will override the environment variable setting.</p>
<p>Or to always use the trash in drive <code>--drive-use-trash</code>, set <code>RCLONE_DRIVE_USE_TRASH=true</code>.</p>
<p>The same parser is used for the options and the environment variables so they take exactly the same form.</p>
<h3 id="config-file">Config file</h3>
<p>You can set defaults for values in the config file on an individual remote basis. If you want to use this feature, you will need to discover the name of the config items that you want. The easiest way is to run through <code>rclone config</code> by hand, then look in the config file to see what the values are (the config file can be found by looking at the help for <code>--config</code> in <code>rclone help</code>).</p>
<p>To find the name of the environment variable, you need to set, take <code>RCLONE_CONFIG_</code> + name of remote + <code>_</code> + name of config file option and make it all uppercase.</p>
<p>For example, to configure an S3 remote named <code>mys3:</code> without a config file (using unix ways of setting environment variables):</p>
<pre><code>$ export RCLONE_CONFIG_MYS3_TYPE=s3
$ export RCLONE_CONFIG_MYS3_ACCESS_KEY_ID=XXX
$ export RCLONE_CONFIG_MYS3_SECRET_ACCESS_KEY=XXX
$ rclone lsd MYS3:
-1 2016-09-21 12:54:21 -1 my-bucket
$ rclone listremotes | grep mys3
mys3:</code></pre>
<p>Note that if you want to create a remote using environment variables you must create the <code>..._TYPE</code> variable as above.</p>
<h3 id="other-environment-variables">Other environment variables</h3>
<ul>
<li>RCLONE_CONFIG_PASS` set to contain your config file password (see <a href="#configuration-encryption">Configuration Encryption</a> section)</li>
<li>HTTP_PROXY, HTTPS_PROXY and NO_PROXY (or the lowercase versions thereof).
<ul>
<li>HTTPS_PROXY takes precedence over HTTP_PROXY for https requests.</li>
<li>The environment values may be either a complete URL or a “host[:port]” for, in which case the “http” scheme is assumed.</li>
</ul></li>
</ul>
<h1 id="configuring-rclone-on-a-remote-headless-machine">Configuring rclone on a remote / headless machine</h1>
<p>Some of the configurations (those involving oauth2) require an Internet connected web browser.</p>
<p>If you are trying to set rclone up on a remote or headless box with no browser available on it (eg a NAS or a server in a datacenter) then you will need to use an alternative means of configuration. There are two ways of doing it, described below.</p>
<h2 id="configuring-using-rclone-authorize">Configuring using rclone authorize</h2>
<p>On the headless box</p>
<pre><code>...
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; n
For this to work, you will need rclone available on a machine that has a web browser available.
Execute the following on your machine:
rclone authorize &quot;amazon cloud drive&quot;
Then paste the result below:
result&gt;</code></pre>
<p>Then on your main desktop machine</p>
<pre><code>rclone authorize &quot;amazon cloud drive&quot;
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
Paste the following into your remote machine ---&gt;
SECRET_TOKEN
&lt;---End paste</code></pre>
<p>Then back to the headless box, paste in the code</p>
<pre><code>result&gt; SECRET_TOKEN
--------------------
[acd12]
client_id =
client_secret =
token = SECRET_TOKEN
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt;</code></pre>
<h2 id="configuring-by-copying-the-config-file">Configuring by copying the config file</h2>
<p>Rclone stores all of its config in a single configuration file. This can easily be copied to configure a remote rclone.</p>
<p>So first configure rclone on your desktop machine</p>
<pre><code>rclone config</code></pre>
<p>to set up the config file.</p>
<p>Find the config file by running <code>rclone config file</code>, for example</p>
<pre><code>$ rclone config file
Configuration file is stored at:
/home/user/.rclone.conf</code></pre>
<p>Now transfer it to the remote box (scp, cut paste, ftp, sftp etc) and place it in the correct place (use <code>rclone config file</code> on the remote box to find out where).</p>
<h1 id="filtering-includes-and-excludes">Filtering, includes and excludes</h1>
<p>Rclone has a sophisticated set of include and exclude rules. Some of these are based on patterns and some on other things like file size.</p>
<p>The filters are applied for the <code>copy</code>, <code>sync</code>, <code>move</code>, <code>ls</code>, <code>lsl</code>, <code>md5sum</code>, <code>sha1sum</code>, <code>size</code>, <code>delete</code> and <code>check</code> operations. Note that <code>purge</code> does not obey the filters.</p>
<p>Each path as it passes through rclone is matched against the include and exclude rules like <code>--include</code>, <code>--exclude</code>, <code>--include-from</code>, <code>--exclude-from</code>, <code>--filter</code>, or <code>--filter-from</code>. The simplest way to try them out is using the <code>ls</code> command, or <code>--dry-run</code> together with <code>-v</code>.</p>
<h2 id="patterns">Patterns</h2>
<p>The patterns used to match files for inclusion or exclusion are based on “file globs” as used by the unix shell.</p>
<p>If the pattern starts with a <code>/</code> then it only matches at the top level of the directory tree, <strong>relative to the root of the remote</strong> (not necessarily the root of the local drive). If it doesnt start with <code>/</code> then it is matched starting at the <strong>end of the path</strong>, but it will only match a complete path element:</p>
<pre><code>file.jpg - matches &quot;file.jpg&quot;
- matches &quot;directory/file.jpg&quot;
- doesn&#39;t match &quot;afile.jpg&quot;
- doesn&#39;t match &quot;directory/afile.jpg&quot;
/file.jpg - matches &quot;file.jpg&quot; in the root directory of the remote
- doesn&#39;t match &quot;afile.jpg&quot;
- doesn&#39;t match &quot;directory/file.jpg&quot;</code></pre>
<p><strong>Important</strong> Note that you must use <code>/</code> in patterns and not <code>\</code> even if running on Windows.</p>
<p>A <code>*</code> matches anything but not a <code>/</code>.</p>
<pre><code>*.jpg - matches &quot;file.jpg&quot;
- matches &quot;directory/file.jpg&quot;
- doesn&#39;t match &quot;file.jpg/something&quot;</code></pre>
<p>Use <code>**</code> to match anything, including slashes (<code>/</code>).</p>
<pre><code>dir/** - matches &quot;dir/file.jpg&quot;
- matches &quot;dir/dir1/dir2/file.jpg&quot;
- doesn&#39;t match &quot;directory/file.jpg&quot;
- doesn&#39;t match &quot;adir/file.jpg&quot;</code></pre>
<p>A <code>?</code> matches any character except a slash <code>/</code>.</p>
<pre><code>l?ss - matches &quot;less&quot;
- matches &quot;lass&quot;
- doesn&#39;t match &quot;floss&quot;</code></pre>
<p>A <code>[</code> and <code>]</code> together make a character class, such as <code>[a-z]</code> or <code>[aeiou]</code> or <code>[[:alpha:]]</code>. See the <a href="https://golang.org/pkg/regexp/syntax/">go regexp docs</a> for more info on these.</p>
<pre><code>h[ae]llo - matches &quot;hello&quot;
- matches &quot;hallo&quot;
- doesn&#39;t match &quot;hullo&quot;</code></pre>
<p>A <code>{</code> and <code>}</code> define a choice between elements. It should contain a comma separated list of patterns, any of which might match. These patterns can contain wildcards.</p>
<pre><code>{one,two}_potato - matches &quot;one_potato&quot;
- matches &quot;two_potato&quot;
- doesn&#39;t match &quot;three_potato&quot;
- doesn&#39;t match &quot;_potato&quot;</code></pre>
<p>Special characters can be escaped with a <code>\</code> before them.</p>
<pre><code>\*.jpg - matches &quot;*.jpg&quot;
\\.jpg - matches &quot;\.jpg&quot;
\[one\].jpg - matches &quot;[one].jpg&quot;</code></pre>
<p>Patterns are case sensitive unless the <code>--ignore-case</code> flag is used.</p>
<p>Without <code>--ignore-case</code> (default)</p>
<pre><code>potato - matches &quot;potato&quot;
- doesn&#39;t match &quot;POTATO&quot;</code></pre>
<p>With <code>--ignore-case</code></p>
<pre><code>potato - matches &quot;potato&quot;
- matches &quot;POTATO&quot;</code></pre>
<p>Note also that rclone filter globs can only be used in one of the filter command line flags, not in the specification of the remote, so <code>rclone copy &quot;remote:dir*.jpg&quot; /path/to/dir</code> wont work - what is required is <code>rclone --include &quot;*.jpg&quot; copy remote:dir /path/to/dir</code></p>
<h3 id="directories">Directories</h3>
<p>Rclone keeps track of directories that could match any file patterns.</p>
<p>Eg if you add the include rule</p>
<pre><code>/a/*.jpg</code></pre>
<p>Rclone will synthesize the directory include rule</p>
<pre><code>/a/</code></pre>
<p>If you put any rules which end in <code>/</code> then it will only match directories.</p>
<p>Directory matches are <strong>only</strong> used to optimise directory access patterns - you must still match the files that you want to match. Directory matches wont optimise anything on bucket based remotes (eg s3, swift, google compute storage, b2) which dont have a concept of directory.</p>
<h3 id="differences-between-rsync-and-rclone-patterns">Differences between rsync and rclone patterns</h3>
<p>Rclone implements bash style <code>{a,b,c}</code> glob matching which rsync doesnt.</p>
<p>Rclone always does a wildcard match so <code>\</code> must always escape a <code>\</code>.</p>
<h2 id="how-the-rules-are-used">How the rules are used</h2>
<p>Rclone maintains a combined list of include rules and exclude rules.</p>
<p>Each file is matched in order, starting from the top, against the rule in the list until it finds a match. The file is then included or excluded according to the rule type.</p>
<p>If the matcher fails to find a match after testing against all the entries in the list then the path is included.</p>
<p>For example given the following rules, <code>+</code> being include, <code>-</code> being exclude,</p>
<pre><code>- secret*.jpg
+ *.jpg
+ *.png
+ file2.avi
- *</code></pre>
<p>This would include</p>
<ul>
<li><code>file1.jpg</code></li>
<li><code>file3.png</code></li>
<li><code>file2.avi</code></li>
</ul>
<p>This would exclude</p>
<ul>
<li><code>secret17.jpg</code></li>
<li>non <code>*.jpg</code> and <code>*.png</code></li>
</ul>
<p>A similar process is done on directory entries before recursing into them. This only works on remotes which have a concept of directory (Eg local, google drive, onedrive, amazon drive) and not on bucket based remotes (eg s3, swift, google compute storage, b2).</p>
<h2 id="adding-filtering-rules">Adding filtering rules</h2>
<p>Filtering rules are added with the following command line flags.</p>
<h3 id="repeating-options">Repeating options</h3>
<p>You can repeat the following options to add more than one rule of that type.</p>
<ul>
<li><code>--include</code></li>
<li><code>--include-from</code></li>
<li><code>--exclude</code></li>
<li><code>--exclude-from</code></li>
<li><code>--filter</code></li>
<li><code>--filter-from</code></li>
</ul>
<p><strong>Important</strong> You should not use <code>--include*</code> together with <code>--exclude*</code>. It may produce different results than you expected. In that case try to use: <code>--filter*</code>.</p>
<p>Note that all the options of the same type are processed together in the order above, regardless of what order they were placed on the command line.</p>
<p>So all <code>--include</code> options are processed first in the order they appeared on the command line, then all <code>--include-from</code> options etc.</p>
<p>To mix up the order includes and excludes, the <code>--filter</code> flag can be used.</p>
<h3 id="exclude---exclude-files-matching-pattern"><code>--exclude</code> - Exclude files matching pattern</h3>
<p>Add a single exclude rule with <code>--exclude</code>.</p>
<p>This flag can be repeated. See above for the order the flags are processed in.</p>
<p>Eg <code>--exclude *.bak</code> to exclude all bak files from the sync.</p>
<h3 id="exclude-from---read-exclude-patterns-from-file"><code>--exclude-from</code> - Read exclude patterns from file</h3>
<p>Add exclude rules from a file.</p>
<p>This flag can be repeated. See above for the order the flags are processed in.</p>
<p>Prepare a file like this <code>exclude-file.txt</code></p>
<pre><code># a sample exclude rule file
*.bak
file2.jpg</code></pre>
<p>Then use as <code>--exclude-from exclude-file.txt</code>. This will sync all files except those ending in <code>bak</code> and <code>file2.jpg</code>.</p>
<p>This is useful if you have a lot of rules.</p>
<h3 id="include---include-files-matching-pattern"><code>--include</code> - Include files matching pattern</h3>
<p>Add a single include rule with <code>--include</code>.</p>
<p>This flag can be repeated. See above for the order the flags are processed in.</p>
<p>Eg <code>--include *.{png,jpg}</code> to include all <code>png</code> and <code>jpg</code> files in the backup and no others.</p>
<p>This adds an implicit <code>--exclude *</code> at the very end of the filter list. This means you can mix <code>--include</code> and <code>--include-from</code> with the other filters (eg <code>--exclude</code>) but you must include all the files you want in the include statement. If this doesnt provide enough flexibility then you must use <code>--filter-from</code>.</p>
<h3 id="include-from---read-include-patterns-from-file"><code>--include-from</code> - Read include patterns from file</h3>
<p>Add include rules from a file.</p>
<p>This flag can be repeated. See above for the order the flags are processed in.</p>
<p>Prepare a file like this <code>include-file.txt</code></p>
<pre><code># a sample include rule file
*.jpg
*.png
file2.avi</code></pre>
<p>Then use as <code>--include-from include-file.txt</code>. This will sync all <code>jpg</code>, <code>png</code> files and <code>file2.avi</code>.</p>
<p>This is useful if you have a lot of rules.</p>
<p>This adds an implicit <code>--exclude *</code> at the very end of the filter list. This means you can mix <code>--include</code> and <code>--include-from</code> with the other filters (eg <code>--exclude</code>) but you must include all the files you want in the include statement. If this doesnt provide enough flexibility then you must use <code>--filter-from</code>.</p>
<h3 id="filter---add-a-file-filtering-rule"><code>--filter</code> - Add a file-filtering rule</h3>
<p>This can be used to add a single include or exclude rule. Include rules start with <code>+</code> and exclude rules start with <code>-</code>. A special rule called <code>!</code> can be used to clear the existing rules.</p>
<p>This flag can be repeated. See above for the order the flags are processed in.</p>
<p>Eg <code>--filter &quot;- *.bak&quot;</code> to exclude all bak files from the sync.</p>
<h3 id="filter-from---read-filtering-patterns-from-a-file"><code>--filter-from</code> - Read filtering patterns from a file</h3>
<p>Add include/exclude rules from a file.</p>
<p>This flag can be repeated. See above for the order the flags are processed in.</p>
<p>Prepare a file like this <code>filter-file.txt</code></p>
<pre><code># a sample filter rule file
- secret*.jpg
+ *.jpg
+ *.png
+ file2.avi
- /dir/Trash/**
+ /dir/**
# exclude everything else
- *</code></pre>
<p>Then use as <code>--filter-from filter-file.txt</code>. The rules are processed in the order that they are defined.</p>
<p>This example will include all <code>jpg</code> and <code>png</code> files, exclude any files matching <code>secret*.jpg</code> and include <code>file2.avi</code>. It will also include everything in the directory <code>dir</code> at the root of the sync, except <code>dir/Trash</code> which it will exclude. Everything else will be excluded from the sync.</p>
<h3 id="files-from---read-list-of-source-file-names"><code>--files-from</code> - Read list of source-file names</h3>
<p>This reads a list of file names from the file passed in and <strong>only</strong> these files are transferred. The <strong>filtering rules are ignored</strong> completely if you use this option.</p>
<p>Rclone will traverse the file system if you use <code>--files-from</code>, effectively using the files in <code>--files-from</code> as a set of filters. Rclone will not error if any of the files are missing.</p>
<p>If you use <code>--no-traverse</code> as well as <code>--files-from</code> then rclone will not traverse the destination file system, it will find each file individually using approximately 1 API call. This can be more efficient for small lists of files.</p>
<p>This option can be repeated to read from more than one file. These are read in the order that they are placed on the command line.</p>
<p>Paths within the <code>--files-from</code> file will be interpreted as starting with the root specified in the command. Leading <code>/</code> characters are ignored.</p>
<p>For example, suppose you had <code>files-from.txt</code> with this content:</p>
<pre><code># comment
file1.jpg
subdir/file2.jpg</code></pre>
<p>You could then use it like this:</p>
<pre><code>rclone copy --files-from files-from.txt /home/me/pics remote:pics</code></pre>
<p>This will transfer these files only (if they exist)</p>
<pre><code>/home/me/pics/file1.jpg → remote:pics/file1.jpg
/home/me/pics/subdir/file2.jpg → remote:pics/subdirfile1.jpg</code></pre>
<p>To take a more complicated example, lets say you had a few files you want to back up regularly with these absolute paths:</p>
<pre><code>/home/user1/important
/home/user1/dir/file
/home/user2/stuff</code></pre>
<p>To copy these youd find a common subdirectory - in this case <code>/home</code> and put the remaining files in <code>files-from.txt</code> with or without leading <code>/</code>, eg</p>
<pre><code>user1/important
user1/dir/file
user2/stuff</code></pre>
<p>You could then copy these to a remote like this</p>
<pre><code>rclone copy --files-from files-from.txt /home remote:backup</code></pre>
<p>The 3 files will arrive in <code>remote:backup</code> with the paths as in the <code>files-from.txt</code> like this:</p>
<pre><code>/home/user1/important → remote:backup/user1/important
/home/user1/dir/file → remote:backup/user1/dir/file
/home/user2/stuff → remote:backup/stuff</code></pre>
<p>You could of course choose <code>/</code> as the root too in which case your <code>files-from.txt</code> might look like this.</p>
<pre><code>/home/user1/important
/home/user1/dir/file
/home/user2/stuff</code></pre>
<p>And you would transfer it like this</p>
<pre><code>rclone copy --files-from files-from.txt / remote:backup</code></pre>
<p>In this case there will be an extra <code>home</code> directory on the remote:</p>
<pre><code>/home/user1/important → remote:home/backup/user1/important
/home/user1/dir/file → remote:home/backup/user1/dir/file
/home/user2/stuff → remote:home/backup/stuff</code></pre>
<h3 id="min-size---dont-transfer-any-file-smaller-than-this"><code>--min-size</code> - Dont transfer any file smaller than this</h3>
<p>This option controls the minimum size file which will be transferred. This defaults to <code>kBytes</code> but a suffix of <code>k</code>, <code>M</code>, or <code>G</code> can be used.</p>
<p>For example <code>--min-size 50k</code> means no files smaller than 50kByte will be transferred.</p>
<h3 id="max-size---dont-transfer-any-file-larger-than-this"><code>--max-size</code> - Dont transfer any file larger than this</h3>
<p>This option controls the maximum size file which will be transferred. This defaults to <code>kBytes</code> but a suffix of <code>k</code>, <code>M</code>, or <code>G</code> can be used.</p>
<p>For example <code>--max-size 1G</code> means no files larger than 1GByte will be transferred.</p>
<h3 id="max-age---dont-transfer-any-file-older-than-this"><code>--max-age</code> - Dont transfer any file older than this</h3>
<p>This option controls the maximum age of files to transfer. Give in seconds or with a suffix of:</p>
<ul>
<li><code>ms</code> - Milliseconds</li>
<li><code>s</code> - Seconds</li>
<li><code>m</code> - Minutes</li>
<li><code>h</code> - Hours</li>
<li><code>d</code> - Days</li>
<li><code>w</code> - Weeks</li>
<li><code>M</code> - Months</li>
<li><code>y</code> - Years</li>
</ul>
<p>For example <code>--max-age 2d</code> means no files older than 2 days will be transferred.</p>
<h3 id="min-age---dont-transfer-any-file-younger-than-this"><code>--min-age</code> - Dont transfer any file younger than this</h3>
<p>This option controls the minimum age of files to transfer. Give in seconds or with a suffix (see <code>--max-age</code> for list of suffixes)</p>
<p>For example <code>--min-age 2d</code> means no files younger than 2 days will be transferred.</p>
<h3 id="delete-excluded---delete-files-on-dest-excluded-from-sync"><code>--delete-excluded</code> - Delete files on dest excluded from sync</h3>
<p><strong>Important</strong> this flag is dangerous - use with <code>--dry-run</code> and <code>-v</code> first.</p>
<p>When doing <code>rclone sync</code> this will delete any files which are excluded from the sync on the destination.</p>
<p>If for example you did a sync from <code>A</code> to <code>B</code> without the <code>--min-size 50k</code> flag</p>
<pre><code>rclone sync A: B:</code></pre>
<p>Then you repeated it like this with the <code>--delete-excluded</code></p>
<pre><code>rclone --min-size 50k --delete-excluded sync A: B:</code></pre>
<p>This would delete all files on <code>B</code> which are less than 50 kBytes as these are now excluded from the sync.</p>
<p>Always test first with <code>--dry-run</code> and <code>-v</code> before using this flag.</p>
<h3 id="dump-filters---dump-the-filters-to-the-output"><code>--dump filters</code> - dump the filters to the output</h3>
<p>This dumps the defined filters to the output as regular expressions.</p>
<p>Useful for debugging.</p>
<h3 id="ignore-case---make-searches-case-insensitive"><code>--ignore-case</code> - make searches case insensitive</h3>
<p>Normally filter patterns are case sensitive. If this flag is supplied then filter patterns become case insensitive.</p>
<p>Normally a <code>--include &quot;file.txt&quot;</code> will not match a file called <code>FILE.txt</code>. However if you use the <code>--ignore-case</code> flag then <code>--include &quot;file.txt&quot;</code> this will match a file called <code>FILE.txt</code>.</p>
<h2 id="quoting-shell-metacharacters">Quoting shell metacharacters</h2>
<p>The examples above may not work verbatim in your shell as they have shell metacharacters in them (eg <code>*</code>), and may require quoting.</p>
<p>Eg linux, OSX</p>
<ul>
<li><code>--include \*.jpg</code></li>
<li><code>--include '*.jpg'</code></li>
<li><code>--include='*.jpg'</code></li>
</ul>
<p>In Windows the expansion is done by the command not the shell so this should work fine</p>
<ul>
<li><code>--include *.jpg</code></li>
</ul>
<h2 id="exclude-directory-based-on-a-file">Exclude directory based on a file</h2>
<p>It is possible to exclude a directory based on a file, which is present in this directory. Filename should be specified using the <code>--exclude-if-present</code> flag. This flag has a priority over the other filtering flags.</p>
<p>Imagine, you have the following directory structure:</p>
<pre><code>dir1/file1
dir1/dir2/file2
dir1/dir2/dir3/file3
dir1/dir2/dir3/.ignore</code></pre>
<p>You can exclude <code>dir3</code> from sync by running the following command:</p>
<pre><code>rclone sync --exclude-if-present .ignore dir1 remote:backup</code></pre>
<p>Currently only one filename is supported, i.e. <code>--exclude-if-present</code> should not be used multiple times.</p>
<h1 id="remote-controlling-rclone">Remote controlling rclone</h1>
<p>If rclone is run with the <code>--rc</code> flag then it starts an http server which can be used to remote control rclone.</p>
<p>If you just want to run a remote control then see the <a href="https://rclone.org/commands/rclone_rcd/">rcd command</a>.</p>
<p><strong>NB</strong> this is experimental and everything here is subject to change!</p>
<h2 id="supported-parameters">Supported parameters</h2>
<h3 id="rc">rc</h3>
<p>Flag to start the http server listen on remote requests</p>
<h3 id="rc-addrip">rc-addr=IP</h3>
<p>IPaddress:Port or :Port to bind server to. (default “localhost:5572”)</p>
<h3 id="rc-certkey">rc-cert=KEY</h3>
<p>SSL PEM key (concatenation of certificate and CA certificate)</p>
<h3 id="rc-client-capath">rc-client-ca=PATH</h3>
<p>Client certificate authority to verify clients with</p>
<h3 id="rc-htpasswdpath">rc-htpasswd=PATH</h3>
<p>htpasswd file - if not provided no authentication is done</p>
<h3 id="rc-keypath">rc-key=PATH</h3>
<p>SSL PEM Private key</p>
<h3 id="rc-max-header-bytesvalue">rc-max-header-bytes=VALUE</h3>
<p>Maximum size of request header (default 4096)</p>
<h3 id="rc-uservalue">rc-user=VALUE</h3>
<p>User name for authentication.</p>
<h3 id="rc-passvalue">rc-pass=VALUE</h3>
<p>Password for authentication.</p>
<h3 id="rc-realmvalue">rc-realm=VALUE</h3>
<p>Realm for authentication (default “rclone”)</p>
<h3 id="rc-server-read-timeoutduration">rc-server-read-timeout=DURATION</h3>
<p>Timeout for server reading data (default 1h0m0s)</p>
<h3 id="rc-server-write-timeoutduration">rc-server-write-timeout=DURATION</h3>
<p>Timeout for server writing data (default 1h0m0s)</p>
<h3 id="rc-serve">rc-serve</h3>
<p>Enable the serving of remote objects via the HTTP interface. This means objects will be accessible at http://127.0.0.1:5572/ by default, so you can browse to http://127.0.0.1:5572/ or http://127.0.0.1:5572/* to see a listing of the remotes. Objects may be requested from remotes using this syntax http://127.0.0.1:5572/[remote:path]/path/to/object</p>
<p>Default Off.</p>
<h3 id="rc-files-pathtodirectory">rc-files /path/to/directory</h3>
<p>Path to local files to serve on the HTTP server.</p>
<p>If this is set then rclone will serve the files in that directory. It will also open the root in the web browser if specified. This is for implementing browser based GUIs for rclone functions.</p>
<p>If <code>--rc-user</code> or <code>--rc-pass</code> is set then the URL that is opened will have the authorization in the URL in the <code>http://user:pass@localhost/</code> style.</p>
<p>Default Off.</p>
<h3 id="rc-job-expire-durationduration">rc-job-expire-duration=DURATION</h3>
<p>Expire finished async jobs older than DURATION (default 60s).</p>
<h3 id="rc-job-expire-intervalduration">rc-job-expire-interval=DURATION</h3>
<p>Interval duration to check for expired async jobs (default 10s).</p>
<h3 id="rc-no-auth">rc-no-auth</h3>
<p>By default rclone will require authorisation to have been set up on the rc interface in order to use any methods which access any rclone remotes. Eg <code>operations/list</code> is denied as it involved creating a remote as is <code>sync/copy</code>.</p>
<p>If this is set then no authorisation will be required on the server to use these methods. The alternative is to use <code>--rc-user</code> and <code>--rc-pass</code> and use these credentials in the request.</p>
<p>Default Off.</p>
<h2 id="accessing-the-remote-control-via-the-rclone-rc-command">Accessing the remote control via the rclone rc command</h2>
<p>Rclone itself implements the remote control protocol in its <code>rclone rc</code> command.</p>
<p>You can use it like this</p>
<pre><code>$ rclone rc rc/noop param1=one param2=two
{
&quot;param1&quot;: &quot;one&quot;,
&quot;param2&quot;: &quot;two&quot;
}</code></pre>
<p>Run <code>rclone rc</code> on its own to see the help for the installed remote control commands.</p>
<p><code>rclone rc</code> also supports a <code>--json</code> flag which can be used to send more complicated input parameters.</p>
<pre><code>$ rclone rc --json &#39;{ &quot;p1&quot;: [1,&quot;2&quot;,null,4], &quot;p2&quot;: { &quot;a&quot;:1, &quot;b&quot;:2 } }&#39; rc/noop
{
&quot;p1&quot;: [
1,
&quot;2&quot;,
null,
4
],
&quot;p2&quot;: {
&quot;a&quot;: 1,
&quot;b&quot;: 2
}
}</code></pre>
<h2 id="special-parameters">Special parameters</h2>
<p>The rc interface supports some special parameters which apply to <strong>all</strong> commands. These start with <code>_</code> to show they are different.</p>
<h3 id="running-asynchronous-jobs-with-_async-true">Running asynchronous jobs with _async = true</h3>
<p>If <code>_async</code> has a true value when supplied to an rc call then it will return immediately with a job id and the task will be run in the background. The <code>job/status</code> call can be used to get information of the background job. The job can be queried for up to 1 minute after it has finished.</p>
<p>It is recommended that potentially long running jobs, eg <code>sync/sync</code>, <code>sync/copy</code>, <code>sync/move</code>, <code>operations/purge</code> are run with the <code>_async</code> flag to avoid any potential problems with the HTTP request and response timing out.</p>
<p>Starting a job with the <code>_async</code> flag:</p>
<pre><code>$ rclone rc --json &#39;{ &quot;p1&quot;: [1,&quot;2&quot;,null,4], &quot;p2&quot;: { &quot;a&quot;:1, &quot;b&quot;:2 }, &quot;_async&quot;: true }&#39; rc/noop
{
&quot;jobid&quot;: 2
}</code></pre>
<p>Query the status to see if the job has finished. For more information on the meaning of these return parameters see the <code>job/status</code> call.</p>
<pre><code>$ rclone rc --json &#39;{ &quot;jobid&quot;:2 }&#39; job/status
{
&quot;duration&quot;: 0.000124163,
&quot;endTime&quot;: &quot;2018-10-27T11:38:07.911245881+01:00&quot;,
&quot;error&quot;: &quot;&quot;,
&quot;finished&quot;: true,
&quot;id&quot;: 2,
&quot;output&quot;: {
&quot;_async&quot;: true,
&quot;p1&quot;: [
1,
&quot;2&quot;,
null,
4
],
&quot;p2&quot;: {
&quot;a&quot;: 1,
&quot;b&quot;: 2
}
},
&quot;startTime&quot;: &quot;2018-10-27T11:38:07.911121728+01:00&quot;,
&quot;success&quot;: true
}</code></pre>
<p><code>job/list</code> can be used to show the running or recently completed jobs</p>
<pre><code>$ rclone rc job/list
{
&quot;jobids&quot;: [
2
]
}</code></pre>
<h2 id="supported-commands">Supported commands</h2>
<!--- autogenerated start - run make rcdocs - don't edit here -->
<h3 id="cacheexpire-purge-a-remote-from-cache">cache/expire: Purge a remote from cache</h3>
<p>Purge a remote from the cache backend. Supports either a directory or a file. Params: - remote = path to remote (required) - withData = true/false to delete cached data (chunks) as well (optional)</p>
<p>Eg</p>
<pre><code>rclone rc cache/expire remote=path/to/sub/folder/
rclone rc cache/expire remote=/ withData=true</code></pre>
<h3 id="cachefetch-fetch-file-chunks">cache/fetch: Fetch file chunks</h3>
<p>Ensure the specified file chunks are cached on disk.</p>
<p>The chunks= parameter specifies the file chunks to check. It takes a comma separated list of array slice indices. The slice indices are similar to Python slices: start[:end]</p>
<p>start is the 0 based chunk number from the beginning of the file to fetch inclusive. end is 0 based chunk number from the beginning of the file to fetch exclusive. Both values can be negative, in which case they count from the back of the file. The value “-5:” represents the last 5 chunks of a file.</p>
<p>Some valid examples are: “:5,-5:” -&gt; the first and last five chunks “0,-2” -&gt; the first and the second last chunk “0:10” -&gt; the first ten chunks</p>
<p>Any parameter with a key that starts with “file” can be used to specify files to fetch, eg</p>
<pre><code>rclone rc cache/fetch chunks=0 file=hello file2=home/goodbye</code></pre>
<p>File names will automatically be encrypted when the a crypt remote is used on top of the cache.</p>
<h3 id="cachestats-get-cache-stats">cache/stats: Get cache stats</h3>
<p>Show statistics for the cache remote.</p>
<h3 id="configcreate-create-the-config-for-a-remote.">config/create: create the config for a remote.</h3>
<p>This takes the following parameters</p>
<ul>
<li>name - name of remote</li>
<li>type - type of the new remote</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_config_create/">config create command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="configdelete-delete-a-remote-in-the-config-file.">config/delete: Delete a remote in the config file.</h3>
<p>Parameters: - name - name of remote to delete</p>
<p>See the <a href="https://rclone.org/commands/rclone_config_delete/">config delete command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="configdump-dumps-the-config-file.">config/dump: Dumps the config file.</h3>
<p>Returns a JSON object: - key: value</p>
<p>Where keys are remote names and values are the config parameters.</p>
<p>See the <a href="https://rclone.org/commands/rclone_config_dump/">config dump command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="configget-get-a-remote-in-the-config-file.">config/get: Get a remote in the config file.</h3>
<p>Parameters: - name - name of remote to get</p>
<p>See the <a href="https://rclone.org/commands/rclone_config_dump/">config dump command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="configlistremotes-lists-the-remotes-in-the-config-file.">config/listremotes: Lists the remotes in the config file.</h3>
<p>Returns - remotes - array of remote names</p>
<p>See the <a href="https://rclone.org/commands/rclone_listremotes/">listremotes command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="configpassword-password-the-config-for-a-remote.">config/password: password the config for a remote.</h3>
<p>This takes the following parameters</p>
<ul>
<li>name - name of remote</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_config_password/">config password command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="configproviders-shows-how-providers-are-configured-in-the-config-file.">config/providers: Shows how providers are configured in the config file.</h3>
<p>Returns a JSON object: - providers - array of objects</p>
<p>See the <a href="https://rclone.org/commands/rclone_config_providers/">config providers command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="configupdate-update-the-config-for-a-remote.">config/update: update the config for a remote.</h3>
<p>This takes the following parameters</p>
<ul>
<li>name - name of remote</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_config_update/">config update command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="corebwlimit-set-the-bandwidth-limit.">core/bwlimit: Set the bandwidth limit.</h3>
<p>This sets the bandwidth limit to that passed in.</p>
<p>Eg</p>
<pre><code>rclone rc core/bwlimit rate=1M
rclone rc core/bwlimit rate=off</code></pre>
<p>The format of the parameter is exactly the same as passed to bwlimit except only one bandwidth may be specified.</p>
<h3 id="coregc-runs-a-garbage-collection.">core/gc: Runs a garbage collection.</h3>
<p>This tells the go runtime to do a garbage collection run. It isnt necessary to call this normally, but it can be useful for debugging memory problems.</p>
<h3 id="corememstats-returns-the-memory-statistics">core/memstats: Returns the memory statistics</h3>
<p>This returns the memory statistics of the running program. What the values mean are explained in the go docs: https://golang.org/pkg/runtime/#MemStats</p>
<p>The most interesting values for most people are:</p>
<ul>
<li>HeapAlloc: This is the amount of memory rclone is actually using</li>
<li>HeapSys: This is the amount of memory rclone has obtained from the OS</li>
<li>Sys: this is the total amount of memory requested from the OS
<ul>
<li>It is virtual memory so may include unused memory</li>
</ul></li>
</ul>
<h3 id="coreobscure-obscures-a-string-passed-in.">core/obscure: Obscures a string passed in.</h3>
<p>Pass a clear string and rclone will obscure it for the config file: - clear - string</p>
<p>Returns - obscured - string</p>
<h3 id="corepid-return-pid-of-current-process">core/pid: Return PID of current process</h3>
<p>This returns PID of current process. Useful for stopping rclone process.</p>
<h3 id="corestats-returns-stats-about-current-transfers.">core/stats: Returns stats about current transfers.</h3>
<p>This returns all available stats</p>
<pre><code>rclone rc core/stats</code></pre>
<p>Returns the following values:</p>
<pre><code>{
&quot;speed&quot;: average speed in bytes/sec since start of the process,
&quot;bytes&quot;: total transferred bytes since the start of the process,
&quot;errors&quot;: number of errors,
&quot;fatalError&quot;: whether there has been at least one FatalError,
&quot;retryError&quot;: whether there has been at least one non-NoRetryError,
&quot;checks&quot;: number of checked files,
&quot;transfers&quot;: number of transferred files,
&quot;deletes&quot; : number of deleted files,
&quot;elapsedTime&quot;: time in seconds since the start of the process,
&quot;lastError&quot;: last occurred error,
&quot;transferring&quot;: an array of currently active file transfers:
[
{
&quot;bytes&quot;: total transferred bytes for this file,
&quot;eta&quot;: estimated time in seconds until file transfer completion
&quot;name&quot;: name of the file,
&quot;percentage&quot;: progress of the file transfer in percent,
&quot;speed&quot;: speed in bytes/sec,
&quot;speedAvg&quot;: speed in bytes/sec as an exponentially weighted moving average,
&quot;size&quot;: size of the file in bytes
}
],
&quot;checking&quot;: an array of names of currently active file checks
[]
}</code></pre>
<p>Values for “transferring”, “checking” and “lastError” are only assigned if data is available. The value for “eta” is null if an eta cannot be determined.</p>
<h3 id="coreversion-shows-the-current-version-of-rclone-and-the-go-runtime.">core/version: Shows the current version of rclone and the go runtime.</h3>
<p>This shows the current version of go and the go runtime - version - rclone version, eg “v1.44” - decomposed - version number as [major, minor, patch, subpatch] - note patch and subpatch will be 999 for a git compiled version - isGit - boolean - true if this was compiled from the git version - os - OS in use as according to Go - arch - cpu architecture in use according to Go - goVersion - version of Go runtime in use</p>
<h3 id="joblist-lists-the-ids-of-the-running-jobs">job/list: Lists the IDs of the running jobs</h3>
<p>Parameters - None</p>
<p>Results - jobids - array of integer job ids</p>
<h3 id="jobstatus-reads-the-status-of-the-job-id">job/status: Reads the status of the job ID</h3>
<p>Parameters - jobid - id of the job (integer)</p>
<p>Results - finished - boolean - duration - time in seconds that the job ran for - endTime - time the job finished (eg “2018-10-26T18:50:20.528746884+01:00”) - error - error from the job or empty string for no error - finished - boolean whether the job has finished or not - id - as passed in above - startTime - time the job started (eg “2018-10-26T18:50:20.528336039+01:00”) - success - boolean - true for success false otherwise - output - output of the job as would have been returned if called synchronously</p>
<h3 id="operationsabout-return-the-space-used-on-the-remote">operations/about: Return the space used on the remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
</ul>
<p>The result is as returned from rclone about json</p>
<p>See the <a href="https://rclone.org/commands/rclone_size/">about command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationscleanup-remove-trashed-files-in-the-remote-or-path">operations/cleanup: Remove trashed files in the remote or path</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_cleanup/">cleanup command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationscopyfile-copy-a-file-from-source-remote-to-destination-remote">operations/copyfile: Copy a file from source remote to destination remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>srcFs - a remote name string eg “drive:” for the source</li>
<li>srcRemote - a path within that remote eg “file.txt” for the source</li>
<li>dstFs - a remote name string eg “drive2:” for the destination</li>
<li>dstRemote - a path within that remote eg “file2.txt” for the destination</li>
</ul>
<p>Authentication is required for this call.</p>
<h3 id="operationscopyurl-copy-the-url-to-the-object">operations/copyurl: Copy the URL to the object</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
<li>url - string, URL to read from</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_copyurl/">copyurl command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationsdelete-remove-files-in-the-path">operations/delete: Remove files in the path</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_delete/">delete command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationsdeletefile-remove-the-single-file-pointed-to">operations/deletefile: Remove the single file pointed to</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_deletefile/">deletefile command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationsfsinfo-return-information-about-the-remote">operations/fsinfo: Return information about the remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
</ul>
<p>This returns info about the remote passed in;</p>
<pre><code>{
// optional features and whether they are available or not
&quot;Features&quot;: {
&quot;About&quot;: true,
&quot;BucketBased&quot;: false,
&quot;CanHaveEmptyDirectories&quot;: true,
&quot;CaseInsensitive&quot;: false,
&quot;ChangeNotify&quot;: false,
&quot;CleanUp&quot;: false,
&quot;Copy&quot;: false,
&quot;DirCacheFlush&quot;: false,
&quot;DirMove&quot;: true,
&quot;DuplicateFiles&quot;: false,
&quot;GetTier&quot;: false,
&quot;ListR&quot;: false,
&quot;MergeDirs&quot;: false,
&quot;Move&quot;: true,
&quot;OpenWriterAt&quot;: true,
&quot;PublicLink&quot;: false,
&quot;Purge&quot;: true,
&quot;PutStream&quot;: true,
&quot;PutUnchecked&quot;: false,
&quot;ReadMimeType&quot;: false,
&quot;ServerSideAcrossConfigs&quot;: false,
&quot;SetTier&quot;: false,
&quot;SetWrapper&quot;: false,
&quot;UnWrap&quot;: false,
&quot;WrapFs&quot;: false,
&quot;WriteMimeType&quot;: false
},
// Names of hashes available
&quot;Hashes&quot;: [
&quot;MD5&quot;,
&quot;SHA-1&quot;,
&quot;DropboxHash&quot;,
&quot;QuickXorHash&quot;
],
&quot;Name&quot;: &quot;local&quot;, // Name as created
&quot;Precision&quot;: 1, // Precision of timestamps in ns
&quot;Root&quot;: &quot;/&quot;, // Path as created
&quot;String&quot;: &quot;Local file system at /&quot; // how the remote will appear in logs
}</code></pre>
<p>This command does not have a command line equivalent so use this instead:</p>
<pre><code>rclone rc --loopback operations/fsinfo fs=remote:</code></pre>
<h3 id="operationslist-list-the-given-remote-and-path-in-json-format">operations/list: List the given remote and path in JSON format</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
<li>opt - a dictionary of options to control the listing (optional)
<ul>
<li>recurse - If set recurse directories</li>
<li>noModTime - If set return modification time</li>
<li>showEncrypted - If set show decrypted names</li>
<li>showOrigIDs - If set show the IDs for each item if known</li>
<li>showHash - If set return a dictionary of hashes</li>
</ul></li>
</ul>
<p>The result is</p>
<ul>
<li>list
<ul>
<li>This is an array of objects as described in the lsjson command</li>
</ul></li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_lsjson/">lsjson command</a> for more information on the above and examples.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationsmkdir-make-a-destination-directory-or-container">operations/mkdir: Make a destination directory or container</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_mkdir/">mkdir command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationsmovefile-move-a-file-from-source-remote-to-destination-remote">operations/movefile: Move a file from source remote to destination remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>srcFs - a remote name string eg “drive:” for the source</li>
<li>srcRemote - a path within that remote eg “file.txt” for the source</li>
<li>dstFs - a remote name string eg “drive2:” for the destination</li>
<li>dstRemote - a path within that remote eg “file2.txt” for the destination</li>
</ul>
<p>Authentication is required for this call.</p>
<h3 id="operationspubliclink-create-or-retrieve-a-public-link-to-the-given-file-or-folder.">operations/publiclink: Create or retrieve a public link to the given file or folder.</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
</ul>
<p>Returns</p>
<ul>
<li>url - URL of the resource</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_link/">link command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationspurge-remove-a-directory-or-container-and-all-of-its-contents">operations/purge: Remove a directory or container and all of its contents</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_purge/">purge command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationsrmdir-remove-an-empty-directory-or-container">operations/rmdir: Remove an empty directory or container</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_rmdir/">rmdir command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationsrmdirs-remove-all-the-empty-directories-in-the-path">operations/rmdirs: Remove all the empty directories in the path</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:”</li>
<li>remote - a path within that remote eg “dir”</li>
<li>leaveRoot - boolean, set to true not to delete the root</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_rmdirs/">rmdirs command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="operationssize-count-the-number-of-bytes-and-files-in-remote">operations/size: Count the number of bytes and files in remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>fs - a remote name string eg “drive:path/to/dir”</li>
</ul>
<p>Returns</p>
<ul>
<li>count - number of files</li>
<li>bytes - number of bytes in those files</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_size/">size command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="optionsblocks-list-all-the-option-blocks">options/blocks: List all the option blocks</h3>
<p>Returns - options - a list of the options block names</p>
<h3 id="optionsget-get-all-the-options">options/get: Get all the options</h3>
<p>Returns an object where keys are option block names and values are an object with the current option values in.</p>
<p>This shows the internal names of the option within rclone which should map to the external options very easily with a few exceptions.</p>
<h3 id="optionsset-set-an-option">options/set: Set an option</h3>
<p>Parameters</p>
<ul>
<li>option block name containing an object with
<ul>
<li>key: value</li>
</ul></li>
</ul>
<p>Repeated as often as required.</p>
<p>Only supply the options you wish to change. If an option is unknown it will be silently ignored. Not all options will have an effect when changed like this.</p>
<p>For example:</p>
<p>This sets DEBUG level logs (-vv)</p>
<pre><code>rclone rc options/set --json &#39;{&quot;main&quot;: {&quot;LogLevel&quot;: 8}}&#39;</code></pre>
<p>And this sets INFO level logs (-v)</p>
<pre><code>rclone rc options/set --json &#39;{&quot;main&quot;: {&quot;LogLevel&quot;: 7}}&#39;</code></pre>
<p>And this sets NOTICE level logs (normal without -v)</p>
<pre><code>rclone rc options/set --json &#39;{&quot;main&quot;: {&quot;LogLevel&quot;: 6}}&#39;</code></pre>
<h3 id="rcerror-this-returns-an-error">rc/error: This returns an error</h3>
<p>This returns an error with the input as part of its error string. Useful for testing error handling.</p>
<h3 id="rclist-list-all-the-registered-remote-control-commands">rc/list: List all the registered remote control commands</h3>
<p>This lists all the registered remote control commands as a JSON map in the commands response.</p>
<h3 id="rcnoop-echo-the-input-to-the-output-parameters">rc/noop: Echo the input to the output parameters</h3>
<p>This echoes the input parameters to the output parameters for testing purposes. It can be used to check that rclone is still alive and to check that parameter passing is working properly.</p>
<h3 id="rcnoopauth-echo-the-input-to-the-output-parameters-requiring-auth">rc/noopauth: Echo the input to the output parameters requiring auth</h3>
<p>This echoes the input parameters to the output parameters for testing purposes. It can be used to check that rclone is still alive and to check that parameter passing is working properly.</p>
<p>Authentication is required for this call.</p>
<h3 id="synccopy-copy-a-directory-from-source-remote-to-destination-remote">sync/copy: copy a directory from source remote to destination remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>srcFs - a remote name string eg “drive:src” for the source</li>
<li>dstFs - a remote name string eg “drive:dst” for the destination</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_copy/">copy command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="syncmove-move-a-directory-from-source-remote-to-destination-remote">sync/move: move a directory from source remote to destination remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>srcFs - a remote name string eg “drive:src” for the source</li>
<li>dstFs - a remote name string eg “drive:dst” for the destination</li>
<li>deleteEmptySrcDirs - delete empty src directories if set</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_move/">move command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="syncsync-sync-a-directory-from-source-remote-to-destination-remote">sync/sync: sync a directory from source remote to destination remote</h3>
<p>This takes the following parameters</p>
<ul>
<li>srcFs - a remote name string eg “drive:src” for the source</li>
<li>dstFs - a remote name string eg “drive:dst” for the destination</li>
</ul>
<p>See the <a href="https://rclone.org/commands/rclone_sync/">sync command</a> command for more information on the above.</p>
<p>Authentication is required for this call.</p>
<h3 id="vfsforget-forget-files-or-directories-in-the-directory-cache.">vfs/forget: Forget files or directories in the directory cache.</h3>
<p>This forgets the paths in the directory cache causing them to be re-read from the remote when needed.</p>
<p>If no paths are passed in then it will forget all the paths in the directory cache.</p>
<pre><code>rclone rc vfs/forget</code></pre>
<p>Otherwise pass files or dirs in as file=path or dir=path. Any parameter key starting with file will forget that file and any starting with dir will forget that dir, eg</p>
<pre><code>rclone rc vfs/forget file=hello file2=goodbye dir=home/junk</code></pre>
<h3 id="vfspoll-interval-get-the-status-or-update-the-value-of-the-poll-interval-option.">vfs/poll-interval: Get the status or update the value of the poll-interval option.</h3>
<p>Without any parameter given this returns the current status of the poll-interval setting.</p>
<p>When the interval=duration parameter is set, the poll-interval value is updated and the polling function is notified. Setting interval=0 disables poll-interval.</p>
<pre><code>rclone rc vfs/poll-interval interval=5m</code></pre>
<p>The timeout=duration parameter can be used to specify a time to wait for the current poll function to apply the new value. If timeout is less or equal 0, which is the default, wait indefinitely.</p>
<p>The new poll-interval value will only be active when the timeout is not reached.</p>
<p>If poll-interval is updated or disabled temporarily, some changes might not get picked up by the polling function, depending on the used remote.</p>
<h3 id="vfsrefresh-refresh-the-directory-cache.">vfs/refresh: Refresh the directory cache.</h3>
<p>This reads the directories for the specified paths and freshens the directory cache.</p>
<p>If no paths are passed in then it will refresh the root directory.</p>
<pre><code>rclone rc vfs/refresh</code></pre>
<p>Otherwise pass directories in as dir=path. Any parameter key starting with dir will refresh that directory, eg</p>
<pre><code>rclone rc vfs/refresh dir=home/junk dir2=data/misc</code></pre>
<p>If the parameter recursive=true is given the whole directory tree will get refreshed. This refresh will use fast-list if enabled.</p>
<!--- autogenerated stop -->
<h2 id="accessing-the-remote-control-via-http">Accessing the remote control via HTTP</h2>
<p>Rclone implements a simple HTTP based protocol.</p>
<p>Each endpoint takes an JSON object and returns a JSON object or an error. The JSON objects are essentially a map of string names to values.</p>
<p>All calls must made using POST.</p>
<p>The input objects can be supplied using URL parameters, POST parameters or by supplying “Content-Type: application/json” and a JSON blob in the body. There are examples of these below using <code>curl</code>.</p>
<p>The response will be a JSON blob in the body of the response. This is formatted to be reasonably human readable.</p>
<h3 id="error-returns">Error returns</h3>
<p>If an error occurs then there will be an HTTP error status (eg 500) and the body of the response will contain a JSON encoded error object, eg</p>
<pre><code>{
&quot;error&quot;: &quot;Expecting string value for key \&quot;remote\&quot; (was float64)&quot;,
&quot;input&quot;: {
&quot;fs&quot;: &quot;/tmp&quot;,
&quot;remote&quot;: 3
},
&quot;status&quot;: 400
&quot;path&quot;: &quot;operations/rmdir&quot;,
}</code></pre>
<p>The keys in the error response are - error - error string - input - the input parameters to the call - status - the HTTP status code - path - the path of the call</p>
<h3 id="cors">CORS</h3>
<p>The sever implements basic CORS support and allows all origins for that. The response to a preflight OPTIONS request will echo the requested “Access-Control-Request-Headers” back.</p>
<h3 id="using-post-with-url-parameters-only">Using POST with URL parameters only</h3>
<pre><code>curl -X POST &#39;http://localhost:5572/rc/noop?potato=1&amp;sausage=2&#39;</code></pre>
<p>Response</p>
<pre><code>{
&quot;potato&quot;: &quot;1&quot;,
&quot;sausage&quot;: &quot;2&quot;
}</code></pre>
<p>Here is what an error response looks like:</p>
<pre><code>curl -X POST &#39;http://localhost:5572/rc/error?potato=1&amp;sausage=2&#39;</code></pre>
<pre><code>{
&quot;error&quot;: &quot;arbitrary error on input map[potato:1 sausage:2]&quot;,
&quot;input&quot;: {
&quot;potato&quot;: &quot;1&quot;,
&quot;sausage&quot;: &quot;2&quot;
}
}</code></pre>
<p>Note that curl doesnt return errors to the shell unless you use the <code>-f</code> option</p>
<pre><code>$ curl -f -X POST &#39;http://localhost:5572/rc/error?potato=1&amp;sausage=2&#39;
curl: (22) The requested URL returned error: 400 Bad Request
$ echo $?
22</code></pre>
<h3 id="using-post-with-a-form">Using POST with a form</h3>
<pre><code>curl --data &quot;potato=1&quot; --data &quot;sausage=2&quot; http://localhost:5572/rc/noop</code></pre>
<p>Response</p>
<pre><code>{
&quot;potato&quot;: &quot;1&quot;,
&quot;sausage&quot;: &quot;2&quot;
}</code></pre>
<p>Note that you can combine these with URL parameters too with the POST parameters taking precedence.</p>
<pre><code>curl --data &quot;potato=1&quot; --data &quot;sausage=2&quot; &quot;http://localhost:5572/rc/noop?rutabaga=3&amp;sausage=4&quot;</code></pre>
<p>Response</p>
<pre><code>{
&quot;potato&quot;: &quot;1&quot;,
&quot;rutabaga&quot;: &quot;3&quot;,
&quot;sausage&quot;: &quot;4&quot;
}
</code></pre>
<h3 id="using-post-with-a-json-blob">Using POST with a JSON blob</h3>
<pre><code>curl -H &quot;Content-Type: application/json&quot; -X POST -d &#39;{&quot;potato&quot;:2,&quot;sausage&quot;:1}&#39; http://localhost:5572/rc/noop</code></pre>
<p>response</p>
<pre><code>{
&quot;password&quot;: &quot;xyz&quot;,
&quot;username&quot;: &quot;xyz&quot;
}</code></pre>
<p>This can be combined with URL parameters too if required. The JSON blob takes precedence.</p>
<pre><code>curl -H &quot;Content-Type: application/json&quot; -X POST -d &#39;{&quot;potato&quot;:2,&quot;sausage&quot;:1}&#39; &#39;http://localhost:5572/rc/noop?rutabaga=3&amp;potato=4&#39;</code></pre>
<pre><code>{
&quot;potato&quot;: 2,
&quot;rutabaga&quot;: &quot;3&quot;,
&quot;sausage&quot;: 1
}</code></pre>
<h2 id="debugging-rclone-with-pprof">Debugging rclone with pprof</h2>
<p>If you use the <code>--rc</code> flag this will also enable the use of the go profiling tools on the same port.</p>
<p>To use these, first <a href="https://golang.org/doc/install">install go</a>.</p>
<h3 id="debugging-memory-use">Debugging memory use</h3>
<p>To profile rclones memory use you can run:</p>
<pre><code>go tool pprof -web http://localhost:5572/debug/pprof/heap</code></pre>
<p>This should open a page in your browser showing what is using what memory.</p>
<p>You can also use the <code>-text</code> flag to produce a textual summary</p>
<pre><code>$ go tool pprof -text http://localhost:5572/debug/pprof/heap
Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
flat flat% sum% cum cum%
1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
513kB 33.38% 100% 513kB 33.38% net/http.newBufioWriterSize
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/all.init
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve.init
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve/restic.init
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2.init
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init.0
0 0% 100% 1024.03kB 66.62% main.init
0 0% 100% 513kB 33.38% net/http.(*conn).readRequest
0 0% 100% 513kB 33.38% net/http.(*conn).serve
0 0% 100% 1024.03kB 66.62% runtime.main</code></pre>
<h3 id="debugging-go-routine-leaks">Debugging go routine leaks</h3>
<p>Memory leaks are most often caused by go routine leaks keeping memory alive which should have been garbage collected.</p>
<p>See all active go routines using</p>
<pre><code>curl http://localhost:5572/debug/pprof/goroutine?debug=1</code></pre>
<p>Or go to http://localhost:5572/debug/pprof/goroutine?debug=1 in your browser.</p>
<h3 id="other-profiles-to-look-at">Other profiles to look at</h3>
<p>You can see a summary of profiles available at http://localhost:5572/debug/pprof/</p>
<p>Here is how to use some of them:</p>
<ul>
<li>Memory: <code>go tool pprof http://localhost:5572/debug/pprof/heap</code></li>
<li>Go routines: <code>curl http://localhost:5572/debug/pprof/goroutine?debug=1</code></li>
<li>30-second CPU profile: <code>go tool pprof http://localhost:5572/debug/pprof/profile</code></li>
<li>5-second execution trace: <code>wget http://localhost:5572/debug/pprof/trace?seconds=5</code></li>
</ul>
<p>See the <a href="https://golang.org/pkg/net/http/pprof/">net/http/pprof docs</a> for more info on how to use the profiling and for a general overview see <a href="https://blog.golang.org/profiling-go-programs">the Go teams blog post on profiling go programs</a>.</p>
<p>The profiling hook is <a href="https://stackoverflow.com/q/26545159/164234">zero overhead unless it is used</a>.</p>
<h1 id="overview-of-cloud-storage-systems">Overview of cloud storage systems</h1>
<p>Each cloud storage system is slightly different. Rclone attempts to provide a unified interface to them, but some underlying differences show through.</p>
<h2 id="features">Features</h2>
<p>Here is an overview of the major features of each cloud storage system.</p>
<table>
<thead>
<tr class="header">
<th>Name</th>
<th style="text-align: center;">Hash</th>
<th style="text-align: center;">ModTime</th>
<th style="text-align: center;">Case Insensitive</th>
<th style="text-align: center;">Duplicate Files</th>
<th style="text-align: center;">MIME Type</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Amazon Drive</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R</td>
</tr>
<tr class="even">
<td>Amazon S3</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="odd">
<td>Backblaze B2</td>
<td style="text-align: center;">SHA1</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="even">
<td>Box</td>
<td style="text-align: center;">SHA1</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="odd">
<td>Dropbox</td>
<td style="text-align: center;">DBHASH †</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="even">
<td>FTP</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="odd">
<td>Google Cloud Storage</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="even">
<td>Google Drive</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="odd">
<td>HTTP</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R</td>
</tr>
<tr class="even">
<td>Hubic</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="odd">
<td>Jottacloud</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="even">
<td>Koofr</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="odd">
<td>Mega</td>
<td style="text-align: center;">-</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="even">
<td>Microsoft Azure Blob Storage</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="odd">
<td>Microsoft OneDrive</td>
<td style="text-align: center;">SHA1 ‡‡</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R</td>
</tr>
<tr class="even">
<td>OpenDrive</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="odd">
<td>Openstack Swift</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="even">
<td>pCloud</td>
<td style="text-align: center;">MD5, SHA1</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">W</td>
</tr>
<tr class="odd">
<td>QingStor</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="even">
<td>SFTP</td>
<td style="text-align: center;">MD5, SHA1 ‡</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Depends</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="odd">
<td>WebDAV</td>
<td style="text-align: center;">MD5, SHA1 ††</td>
<td style="text-align: center;">Yes †††</td>
<td style="text-align: center;">Depends</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
<tr class="even">
<td>Yandex Disk</td>
<td style="text-align: center;">MD5</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">R/W</td>
</tr>
<tr class="odd">
<td>The local filesystem</td>
<td style="text-align: center;">All</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Depends</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">-</td>
</tr>
</tbody>
</table>
<h3 id="hash">Hash</h3>
<p>The cloud storage system supports various hash types of the objects. The hashes are used when transferring data as an integrity check and can be specifically used with the <code>--checksum</code> flag in syncs and in the <code>check</code> command.</p>
<p>To use the verify checksums when transferring between cloud storage systems they must support a common hash type.</p>
<p>† Note that Dropbox supports <a href="https://www.dropbox.com/developers/reference/content-hash">its own custom hash</a>. This is an SHA256 sum of all the 4MB block SHA256s.</p>
<p>‡ SFTP supports checksums if the same login has shell access and <code>md5sum</code> or <code>sha1sum</code> as well as <code>echo</code> are in the remotes PATH.</p>
<p>†† WebDAV supports hashes when used with Owncloud and Nextcloud only.</p>
<p>††† WebDAV supports modtimes when used with Owncloud and Nextcloud only.</p>
<p>‡‡ Microsoft OneDrive Personal supports SHA1 hashes, whereas OneDrive for business and SharePoint server support Microsofts own <a href="https://docs.microsoft.com/en-us/onedrive/developer/code-snippets/quickxorhash">QuickXorHash</a>.</p>
<h3 id="modtime">ModTime</h3>
<p>The cloud storage system supports setting modification times on objects. If it does then this enables a using the modification times as part of the sync. If not then only the size will be checked by default, though the MD5SUM can be checked with the <code>--checksum</code> flag.</p>
<p>All cloud storage systems support some kind of date on the object and these will be set when transferring from the cloud storage system.</p>
<h3 id="case-insensitive">Case Insensitive</h3>
<p>If a cloud storage systems is case sensitive then it is possible to have two files which differ only in case, eg <code>file.txt</code> and <code>FILE.txt</code>. If a cloud storage system is case insensitive then that isnt possible.</p>
<p>This can cause problems when syncing between a case insensitive system and a case sensitive system. The symptom of this is that no matter how many times you run the sync it never completes fully.</p>
<p>The local filesystem and SFTP may or may not be case sensitive depending on OS.</p>
<ul>
<li>Windows - usually case insensitive, though case is preserved</li>
<li>OSX - usually case insensitive, though it is possible to format case sensitive</li>
<li>Linux - usually case sensitive, but there are case insensitive file systems (eg FAT formatted USB keys)</li>
</ul>
<p>Most of the time this doesnt cause any problems as people tend to avoid files whose name differs only by case even on case sensitive systems.</p>
<h3 id="duplicate-files">Duplicate files</h3>
<p>If a cloud storage system allows duplicate files then it can have two objects with the same name.</p>
<p>This confuses rclone greatly when syncing - use the <code>rclone dedupe</code> command to rename or remove duplicates.</p>
<h3 id="mime-type">MIME Type</h3>
<p>MIME types (also known as media types) classify types of documents using a simple text classification, eg <code>text/html</code> or <code>application/pdf</code>.</p>
<p>Some cloud storage systems support reading (<code>R</code>) the MIME type of objects and some support writing (<code>W</code>) the MIME type of objects.</p>
<p>The MIME type can be important if you are serving files directly to HTTP from the storage system.</p>
<p>If you are copying from a remote which supports reading (<code>R</code>) to a remote which supports writing (<code>W</code>) then rclone will preserve the MIME types. Otherwise they will be guessed from the extension, or the remote itself may assign the MIME type.</p>
<h2 id="optional-features">Optional Features</h2>
<p>All the remotes support a basic set of features, but there are some optional features supported by some remotes used to make some operations more efficient.</p>
<table>
<thead>
<tr class="header">
<th>Name</th>
<th style="text-align: center;">Purge</th>
<th style="text-align: center;">Copy</th>
<th style="text-align: center;">Move</th>
<th style="text-align: center;">DirMove</th>
<th style="text-align: center;">CleanUp</th>
<th style="text-align: center;">ListR</th>
<th style="text-align: center;">StreamUpload</th>
<th style="text-align: center;">LinkSharing</th>
<th style="text-align: center;">About</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Amazon Drive</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/575">#575</a></td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="even">
<td>Amazon S3</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="odd">
<td>Backblaze B2</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="even">
<td>Box</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/575">#575</a></td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
</tr>
<tr class="odd">
<td>Dropbox</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/575">#575</a></td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="even">
<td>FTP</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="odd">
<td>Google Cloud Storage</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="even">
<td>Google Drive</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="odd">
<td>HTTP</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="even">
<td>Hubic</td>
<td style="text-align: center;">Yes †</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="odd">
<td>Jottacloud</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="even">
<td>Mega</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="odd">
<td>Microsoft Azure Blob Storage</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="even">
<td>Microsoft OneDrive</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/575">#575</a></td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="odd">
<td>OpenDrive</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
</tr>
<tr class="even">
<td>Openstack Swift</td>
<td style="text-align: center;">Yes †</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="odd">
<td>pCloud</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="even">
<td>QingStor</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">No</td>
</tr>
<tr class="odd">
<td>SFTP</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="even">
<td>WebDAV</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes ‡</td>
<td style="text-align: center;">No <a href="https://github.com/rclone/rclone/issues/2178">#2178</a></td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="odd">
<td>Yandex Disk</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
</tr>
<tr class="even">
<td>The local filesystem</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
<td style="text-align: center;">No</td>
<td style="text-align: center;">Yes</td>
</tr>
</tbody>
</table>
<h3 id="purge">Purge</h3>
<p>This deletes a directory quicker than just deleting all the files in the directory.</p>
<p>† Note Swift and Hubic implement this in order to delete directory markers but they dont actually have a quicker way of deleting files other than deleting them individually.</p>
<p>‡ StreamUpload is not supported with Nextcloud</p>
<h3 id="copy">Copy</h3>
<p>Used when copying an object to and from the same remote. This known as a server side copy so you can copy a file without downloading it and uploading it again. It is used if you use <code>rclone copy</code> or <code>rclone move</code> if the remote doesnt support <code>Move</code> directly.</p>
<p>If the server doesnt support <code>Copy</code> directly then for copy operations the file is downloaded then re-uploaded.</p>
<h3 id="move">Move</h3>
<p>Used when moving/renaming an object on the same remote. This is known as a server side move of a file. This is used in <code>rclone move</code> if the server doesnt support <code>DirMove</code>.</p>
<p>If the server isnt capable of <code>Move</code> then rclone simulates it with <code>Copy</code> then delete. If the server doesnt support <code>Copy</code> then rclone will download the file and re-upload it.</p>
<h3 id="dirmove">DirMove</h3>
<p>This is used to implement <code>rclone move</code> to move a directory if possible. If it isnt then it will use <code>Move</code> on each file (which falls back to <code>Copy</code> then download and upload - see <code>Move</code> section).</p>
<h3 id="cleanup">CleanUp</h3>
<p>This is used for emptying the trash for a remote by <code>rclone cleanup</code>.</p>
<p>If the server cant do <code>CleanUp</code> then <code>rclone cleanup</code> will return an error.</p>
<h3 id="listr">ListR</h3>
<p>The remote supports a recursive list to list all the contents beneath a directory quickly. This enables the <code>--fast-list</code> flag to work. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="streamupload">StreamUpload</h3>
<p>Some remotes allow files to be uploaded without knowing the file size in advance. This allows certain operations to work without spooling the file to local disk first, e.g. <code>rclone rcat</code>.</p>
<h3 id="linksharing">LinkSharing</h3>
<p>Sets the necessary permissions on a file or folder and prints a link that allows others to access them, even if they dont have an account on the particular cloud provider.</p>
<h3 id="about">About</h3>
<p>This is used to fetch quota information from the remote, like bytes used/free/quota and bytes used in the trash.</p>
<p>This is also used to return the space used, available for <code>rclone mount</code>.</p>
<p>If the server cant do <code>About</code> then <code>rclone about</code> will return an error.</p>
<h2 id="alias">Alias</h2>
<p>The <code>alias</code> remote provides a new name for another remote.</p>
<p>Paths may be as deep as required or a local path, eg <code>remote:directory/subdirectory</code> or <code>/directory/subdirectory</code>.</p>
<p>During the initial setup with <code>rclone config</code> you will specify the target remote. The target remote can either be a local path or another remote.</p>
<p>Subfolders can be used in target remote. Assume a alias remote named <code>backup</code> with the target <code>mydrive:private/backup</code>. Invoking <code>rclone mkdir backup:desktop</code> is exactly the same as invoking <code>rclone mkdir mydrive:private/backup/desktop</code>.</p>
<p>There will be no special handling of paths containing <code>..</code> segments. Invoking <code>rclone mkdir backup:../desktop</code> is exactly the same as invoking <code>rclone mkdir mydrive:private/backup/../desktop</code>. The empty path is not allowed as a remote. To alias the current directory use <code>.</code> instead.</p>
<p>Here is an example of how to make a alias called <code>remote</code> for local folder. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Alias for an existing remote
\ &quot;alias&quot;
2 / Amazon Drive
\ &quot;amazon cloud drive&quot;
3 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
4 / Backblaze B2
\ &quot;b2&quot;
5 / Box
\ &quot;box&quot;
6 / Cache a remote
\ &quot;cache&quot;
7 / Dropbox
\ &quot;dropbox&quot;
8 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
9 / FTP Connection
\ &quot;ftp&quot;
10 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
11 / Google Drive
\ &quot;drive&quot;
12 / Hubic
\ &quot;hubic&quot;
13 / Local Disk
\ &quot;local&quot;
14 / Microsoft Azure Blob Storage
\ &quot;azureblob&quot;
15 / Microsoft OneDrive
\ &quot;onedrive&quot;
16 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
17 / Pcloud
\ &quot;pcloud&quot;
18 / QingCloud Object Storage
\ &quot;qingstor&quot;
19 / SSH/SFTP Connection
\ &quot;sftp&quot;
20 / Webdav
\ &quot;webdav&quot;
21 / Yandex Disk
\ &quot;yandex&quot;
22 / http Connection
\ &quot;http&quot;
Storage&gt; 1
Remote or path to alias.
Can be &quot;myremote:path/to/dir&quot;, &quot;myremote:bucket&quot;, &quot;myremote:&quot; or &quot;/local/path&quot;.
remote&gt; /mnt/storage/backup
Remote config
--------------------
[remote]
remote = /mnt/storage/backup
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y
Current remotes:
Name Type
==== ====
remote alias
e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q&gt; q</code></pre>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level in <code>/mnt/storage/backup</code></p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in <code>/mnt/storage/backup</code></p>
<pre><code>rclone ls remote:</code></pre>
<p>Copy another local directory to the alias directory called source</p>
<pre><code>rclone copy /home/source remote:source</code></pre>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/alias/alias.go then run make backenddocs -->
<h3 id="standard-options">Standard Options</h3>
<p>Here are the standard options specific to alias (Alias for an existing remote).</p>
<h4 id="alias-remote">alias-remote</h4>
<p>Remote or path to alias. Can be “myremote:path/to/dir”, “myremote:bucket”, “myremote:” or “/local/path”.</p>
<ul>
<li>Config: remote</li>
<li>Env Var: RCLONE_ALIAS_REMOTE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="amazon-drive">Amazon Drive</h2>
<p>Amazon Drive, formerly known as Amazon Cloud Drive, is a cloud storage service run by Amazon for consumers.</p>
<h2 id="status">Status</h2>
<p><strong>Important:</strong> rclone supports Amazon Drive only if you have your own set of API keys. Unfortunately the <a href="https://developer.amazon.com/amazon-drive">Amazon Drive developer program</a> is now closed to new entries so if you dont already have your own set of keys you will not be able to use rclone with Amazon Drive.</p>
<p>For the history on why rclone no longer has a set of Amazon Drive API keys see <a href="https://forum.rclone.org/t/rclone-has-been-banned-from-amazon-drive/2314">the forum</a>.</p>
<p>If you happen to know anyone who works at Amazon then please ask them to re-instate rclone into the Amazon Drive developer program - thanks!</p>
<h2 id="setup">Setup</h2>
<p>The initial setup for Amazon Drive involves getting a token from Amazon which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>The configuration process for Amazon Drive may involve using an <a href="https://github.com/ncw/oauthproxy">oauth proxy</a>. This is used to keep the Amazon credentials out of the source code. The proxy runs in Googles very secure App Engine environment and doesnt store any credentials which pass through it.</p>
<p>Since rclone doesnt currently have its own Amazon Drive credentials so you will either need to have your own <code>client_id</code> and <code>client_secret</code> with Amazon Drive, or use a a third party ouath proxy in which case you will need to enter <code>client_id</code>, <code>client_secret</code>, <code>auth_url</code> and <code>token_url</code>.</p>
<p>Note also if you are not using Amazons <code>auth_url</code> and <code>token_url</code>, (ie you filled in something for those) then if setting up on a remote machine you can only use the <a href="https://rclone.org/remote_setup/#configuring-by-copying-the-config-file">copying the config method of configuration</a> - <code>rclone authorize</code> will not work.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
n/r/c/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / FTP Connection
\ &quot;ftp&quot;
7 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
8 / Google Drive
\ &quot;drive&quot;
9 / Hubic
\ &quot;hubic&quot;
10 / Local Disk
\ &quot;local&quot;
11 / Microsoft OneDrive
\ &quot;onedrive&quot;
12 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
13 / SSH/SFTP Connection
\ &quot;sftp&quot;
14 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 1
Amazon Application Client Id - required.
client_id&gt; your client ID goes here
Amazon Application Client Secret - required.
client_secret&gt; your client secret goes here
Auth server URL - leave blank to use Amazon&#39;s.
auth_url&gt; Optional auth URL
Token server url - leave blank to use Amazon&#39;s.
token_url&gt; Optional token URL
Remote config
Make sure your Redirect URL is set to &quot;http://127.0.0.1:53682/&quot; in your custom config.
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
--------------------
[remote]
client_id = your client ID goes here
client_secret = your client secret goes here
auth_url = Optional auth URL
token_url = Optional token URL
token = {&quot;access_token&quot;:&quot;xxxxxxxxxxxxxxxxxxxxxxx&quot;,&quot;token_type&quot;:&quot;bearer&quot;,&quot;refresh_token&quot;:&quot;xxxxxxxxxxxxxxxxxx&quot;,&quot;expiry&quot;:&quot;2015-09-06T16:07:39.658438471+01:00&quot;}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>See the <a href="https://rclone.org/remote_setup/">remote setup docs</a> for how to set it up on a machine with no Internet browser available.</p>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from Amazon. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your Amazon Drive</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your Amazon Drive</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an Amazon Drive directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="modified-time-and-md5sums">Modified time and MD5SUMs</h3>
<p>Amazon Drive doesnt allow modification times to be changed via the API so these wont be accurate or used for syncing.</p>
<p>It does store MD5SUMs so for a more accurate sync, you can use the <code>--checksum</code> flag.</p>
<h3 id="deleting-files">Deleting files</h3>
<p>Any files you delete with rclone will end up in the trash. Amazon dont provide an API to permanently delete files, nor to empty the trash, so you will have to do that with one of Amazons apps or via the Amazon Drive website. As of November 17, 2016, files are automatically deleted by Amazon from the trash after 30 days.</p>
<h3 id="using-with-non-.com-amazon-accounts">Using with non <code>.com</code> Amazon accounts</h3>
<p>Lets say you usually use <code>amazon.co.uk</code>. When you authenticate with rclone it will take you to an <code>amazon.com</code> page to log in. Your <code>amazon.co.uk</code> email and password should work here just fine.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/amazonclouddrive/amazonclouddrive.go then run make backenddocs -->
<h3 id="standard-options-1">Standard Options</h3>
<p>Here are the standard options specific to amazon cloud drive (Amazon Drive).</p>
<h4 id="acd-client-id">acd-client-id</h4>
<p>Amazon Application Client ID.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_ACD_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="acd-client-secret">acd-client-secret</h4>
<p>Amazon Application Client Secret.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_ACD_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options">Advanced Options</h3>
<p>Here are the advanced options specific to amazon cloud drive (Amazon Drive).</p>
<h4 id="acd-auth-url">acd-auth-url</h4>
<p>Auth server URL. Leave blank to use Amazons.</p>
<ul>
<li>Config: auth_url</li>
<li>Env Var: RCLONE_ACD_AUTH_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="acd-token-url">acd-token-url</h4>
<p>Token server url. leave blank to use Amazons.</p>
<ul>
<li>Config: token_url</li>
<li>Env Var: RCLONE_ACD_TOKEN_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="acd-checkpoint">acd-checkpoint</h4>
<p>Checkpoint for internal polling (debug).</p>
<ul>
<li>Config: checkpoint</li>
<li>Env Var: RCLONE_ACD_CHECKPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="acd-upload-wait-per-gb">acd-upload-wait-per-gb</h4>
<p>Additional time per GB to wait after a failed complete upload to see if it appears.</p>
<p>Sometimes Amazon Drive gives an error when a file has been fully uploaded but the file appears anyway after a little while. This happens sometimes for files over 1GB in size and nearly every time for files bigger than 10GB. This parameter controls the time rclone waits for the file to appear.</p>
<p>The default value for this parameter is 3 minutes per GB, so by default it will wait 3 minutes for every GB uploaded to see if the file appears.</p>
<p>You can disable this feature by setting it to 0. This may cause conflict errors as rclone retries the failed upload but the file will most likely appear correctly eventually.</p>
<p>These values were determined empirically by observing lots of uploads of big files for a range of file sizes.</p>
<p>Upload with the “-v” flag to see more info about what rclone is doing in this situation.</p>
<ul>
<li>Config: upload_wait_per_gb</li>
<li>Env Var: RCLONE_ACD_UPLOAD_WAIT_PER_GB</li>
<li>Type: Duration</li>
<li>Default: 3m0s</li>
</ul>
<h4 id="acd-templink-threshold">acd-templink-threshold</h4>
<p>Files &gt;= this size will be downloaded via their tempLink.</p>
<p>Files this size or more will be downloaded via their “tempLink”. This is to work around a problem with Amazon Drive which blocks downloads of files bigger than about 10GB. The default for this is 9GB which shouldnt need to be changed.</p>
<p>To download files above this threshold, rclone requests a “tempLink” which downloads the file through a temporary URL directly from the underlying S3 storage.</p>
<ul>
<li>Config: templink_threshold</li>
<li>Env Var: RCLONE_ACD_TEMPLINK_THRESHOLD</li>
<li>Type: SizeSuffix</li>
<li>Default: 9G</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-1">Limitations</h3>
<p>Note that Amazon Drive is case insensitive so you cant have a file called “Hello.doc” and one called “hello.doc”.</p>
<p>Amazon Drive has rate limiting so you may notice errors in the sync (429 errors). rclone will automatically retry the sync up to 3 times by default (see <code>--retries</code> flag) which should hopefully work around this problem.</p>
<p>Amazon Drive has an internal limit of file sizes that can be uploaded to the service. This limit is not officially published, but all files larger than this will fail.</p>
<p>At the time of writing (Jan 2016) is in the area of 50GB per file. This means that larger files are likely to fail.</p>
<p>Unfortunately there is no way for rclone to see that this failure is because of file size, so it will retry the operation, as any other failure. To avoid this problem, use <code>--max-size 50000M</code> option to limit the maximum size of uploaded files. Note that <code>--max-size</code> does not split files into segments, it only ignores files over this size.</p>
<h2 id="amazon-s3-storage-providers">Amazon S3 Storage Providers</h2>
<p>The S3 backend can be used with a number of different providers:</p>
<ul>
<li>AWS S3</li>
<li>Alibaba Cloud (Aliyun) Object Storage System (OSS)</li>
<li>Ceph</li>
<li>DigitalOcean Spaces</li>
<li>Dreamhost</li>
<li>IBM COS S3</li>
<li>Minio</li>
<li>Wasabi</li>
</ul>
<p>Paths are specified as <code>remote:bucket</code> (or <code>remote:</code> for the <code>lsd</code> command.) You may put subdirectories in too, eg <code>remote:bucket/path/to/dir</code>.</p>
<p>Once you have made a remote (see the provider specific section above) you can use it like this:</p>
<p>See all buckets</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new bucket</p>
<pre><code>rclone mkdir remote:bucket</code></pre>
<p>List the contents of a bucket</p>
<pre><code>rclone ls remote:bucket</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote bucket, deleting any excess files in the bucket.</p>
<pre><code>rclone sync /home/local/directory remote:bucket</code></pre>
<h2 id="amazon-s3">AWS S3</h2>
<p>Here is an example of making an s3 configuration. First run</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process.</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Alias for an existing remote
\ &quot;alias&quot;
2 / Amazon Drive
\ &quot;amazon cloud drive&quot;
3 / Amazon S3 Compliant Storage Providers (AWS, Ceph, Dreamhost, IBM COS, Minio)
\ &quot;s3&quot;
4 / Backblaze B2
\ &quot;b2&quot;
[snip]
23 / http Connection
\ &quot;http&quot;
Storage&gt; s3
Choose your S3 provider.
Choose a number from below, or type in your own value
1 / Amazon Web Services (AWS) S3
\ &quot;AWS&quot;
2 / Ceph Object Storage
\ &quot;Ceph&quot;
3 / Digital Ocean Spaces
\ &quot;DigitalOcean&quot;
4 / Dreamhost DreamObjects
\ &quot;Dreamhost&quot;
5 / IBM COS S3
\ &quot;IBMCOS&quot;
6 / Minio Object Storage
\ &quot;Minio&quot;
7 / Wasabi Object Storage
\ &quot;Wasabi&quot;
8 / Any other S3 compatible provider
\ &quot;Other&quot;
provider&gt; 1
Get AWS credentials from runtime (environment variables or EC2/ECS meta data if no env vars). Only applies if access_key_id and secret_access_key is blank.
Choose a number from below, or type in your own value
1 / Enter AWS credentials in the next step
\ &quot;false&quot;
2 / Get AWS credentials from the environment (env vars or IAM)
\ &quot;true&quot;
env_auth&gt; 1
AWS Access Key ID - leave blank for anonymous access or runtime credentials.
access_key_id&gt; XXX
AWS Secret Access Key (password) - leave blank for anonymous access or runtime credentials.
secret_access_key&gt; YYY
Region to connect to.
Choose a number from below, or type in your own value
/ The default endpoint - a good choice if you are unsure.
1 | US Region, Northern Virginia or Pacific Northwest.
| Leave location constraint empty.
\ &quot;us-east-1&quot;
/ US East (Ohio) Region
2 | Needs location constraint us-east-2.
\ &quot;us-east-2&quot;
/ US West (Oregon) Region
3 | Needs location constraint us-west-2.
\ &quot;us-west-2&quot;
/ US West (Northern California) Region
4 | Needs location constraint us-west-1.
\ &quot;us-west-1&quot;
/ Canada (Central) Region
5 | Needs location constraint ca-central-1.
\ &quot;ca-central-1&quot;
/ EU (Ireland) Region
6 | Needs location constraint EU or eu-west-1.
\ &quot;eu-west-1&quot;
/ EU (London) Region
7 | Needs location constraint eu-west-2.
\ &quot;eu-west-2&quot;
/ EU (Frankfurt) Region
8 | Needs location constraint eu-central-1.
\ &quot;eu-central-1&quot;
/ Asia Pacific (Singapore) Region
9 | Needs location constraint ap-southeast-1.
\ &quot;ap-southeast-1&quot;
/ Asia Pacific (Sydney) Region
10 | Needs location constraint ap-southeast-2.
\ &quot;ap-southeast-2&quot;
/ Asia Pacific (Tokyo) Region
11 | Needs location constraint ap-northeast-1.
\ &quot;ap-northeast-1&quot;
/ Asia Pacific (Seoul)
12 | Needs location constraint ap-northeast-2.
\ &quot;ap-northeast-2&quot;
/ Asia Pacific (Mumbai)
13 | Needs location constraint ap-south-1.
\ &quot;ap-south-1&quot;
/ South America (Sao Paulo) Region
14 | Needs location constraint sa-east-1.
\ &quot;sa-east-1&quot;
region&gt; 1
Endpoint for S3 API.
Leave blank if using AWS to use the default endpoint for the region.
endpoint&gt;
Location constraint - must be set to match the Region. Used when creating buckets only.
Choose a number from below, or type in your own value
1 / Empty for US Region, Northern Virginia or Pacific Northwest.
\ &quot;&quot;
2 / US East (Ohio) Region.
\ &quot;us-east-2&quot;
3 / US West (Oregon) Region.
\ &quot;us-west-2&quot;
4 / US West (Northern California) Region.
\ &quot;us-west-1&quot;
5 / Canada (Central) Region.
\ &quot;ca-central-1&quot;
6 / EU (Ireland) Region.
\ &quot;eu-west-1&quot;
7 / EU (London) Region.
\ &quot;eu-west-2&quot;
8 / EU Region.
\ &quot;EU&quot;
9 / Asia Pacific (Singapore) Region.
\ &quot;ap-southeast-1&quot;
10 / Asia Pacific (Sydney) Region.
\ &quot;ap-southeast-2&quot;
11 / Asia Pacific (Tokyo) Region.
\ &quot;ap-northeast-1&quot;
12 / Asia Pacific (Seoul)
\ &quot;ap-northeast-2&quot;
13 / Asia Pacific (Mumbai)
\ &quot;ap-south-1&quot;
14 / South America (Sao Paulo) Region.
\ &quot;sa-east-1&quot;
location_constraint&gt; 1
Canned ACL used when creating buckets and/or storing objects in S3.
For more info visit https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl
Choose a number from below, or type in your own value
1 / Owner gets FULL_CONTROL. No one else has access rights (default).
\ &quot;private&quot;
2 / Owner gets FULL_CONTROL. The AllUsers group gets READ access.
\ &quot;public-read&quot;
/ Owner gets FULL_CONTROL. The AllUsers group gets READ and WRITE access.
3 | Granting this on a bucket is generally not recommended.
\ &quot;public-read-write&quot;
4 / Owner gets FULL_CONTROL. The AuthenticatedUsers group gets READ access.
\ &quot;authenticated-read&quot;
/ Object owner gets FULL_CONTROL. Bucket owner gets READ access.
5 | If you specify this canned ACL when creating a bucket, Amazon S3 ignores it.
\ &quot;bucket-owner-read&quot;
/ Both the object owner and the bucket owner get FULL_CONTROL over the object.
6 | If you specify this canned ACL when creating a bucket, Amazon S3 ignores it.
\ &quot;bucket-owner-full-control&quot;
acl&gt; 1
The server-side encryption algorithm used when storing this object in S3.
Choose a number from below, or type in your own value
1 / None
\ &quot;&quot;
2 / AES256
\ &quot;AES256&quot;
server_side_encryption&gt; 1
The storage class to use when storing objects in S3.
Choose a number from below, or type in your own value
1 / Default
\ &quot;&quot;
2 / Standard storage class
\ &quot;STANDARD&quot;
3 / Reduced redundancy storage class
\ &quot;REDUCED_REDUNDANCY&quot;
4 / Standard Infrequent Access storage class
\ &quot;STANDARD_IA&quot;
5 / One Zone Infrequent Access storage class
\ &quot;ONEZONE_IA&quot;
6 / Glacier storage class
\ &quot;GLACIER&quot;
7 / Glacier Deep Archive storage class
\ &quot;DEEP_ARCHIVE&quot;
storage_class&gt; 1
Remote config
--------------------
[remote]
type = s3
provider = AWS
env_auth = false
access_key_id = XXX
secret_access_key = YYY
region = us-east-1
endpoint =
location_constraint =
acl = private
server_side_encryption =
storage_class =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; </code></pre>
<h3 id="fast-list-1">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="update-and-use-server-modtime">update and use-server-modtime</h3>
<p>As noted below, the modified time is stored on metadata on the object. It is used by default for all operations that require checking the time a file was last updated. It allows rclone to treat the remote more like a true filesystem, but it is inefficient because it requires an extra API call to retrieve the metadata.</p>
<p>For many operations, the time the object was last uploaded to the remote is sufficient to determine if it is “dirty”. By using <code>--update</code> along with <code>--use-server-modtime</code>, you can avoid the extra API call and simply upload files whose local modtime is newer than the time it was last uploaded.</p>
<h3 id="modified-time">Modified time</h3>
<p>The modified time is stored as metadata on the object as <code>X-Amz-Meta-Mtime</code> as floating point since the epoch accurate to 1 ns.</p>
<p>If the modification time needs to be updated rclone will attempt to perform a server side copy to update the modification if the object can be copied in a single part.<br />
In the case the object is larger than 5Gb or is in Glacier or Glacier Deep Archive storage the object will be uploaded rather than copied.</p>
<h3 id="multipart-uploads">Multipart uploads</h3>
<p>rclone supports multipart uploads with S3 which means that it can upload files bigger than 5GB.</p>
<p>Note that files uploaded <em>both</em> with multipart upload <em>and</em> through crypt remotes do not have MD5 sums.</p>
<p>rclone switches from single part uploads to multipart uploads at the point specified by <code>--s3-upload-cutoff</code>. This can be a maximum of 5GB and a minimum of 0 (ie always upload multipart files).</p>
<p>The chunk sizes used in the multipart upload are specified by <code>--s3-chunk-size</code> and the number of chunks uploaded concurrently is specified by <code>--s3-upload-concurrency</code>.</p>
<p>Multipart uploads will use <code>--transfers</code> * <code>--s3-upload-concurrency</code> * <code>--s3-chunk-size</code> extra memory. Single part uploads to not use extra memory.</p>
<p>Single part transfers can be faster than multipart transfers or slower depending on your latency from S3 - the more latency, the more likely single part transfers will be faster.</p>
<p>Increasing <code>--s3-upload-concurrency</code> will increase throughput (8 would be a sensible value) and increasing <code>--s3-chunk-size</code> also increases throughput (16M would be sensible). Increasing either of these will use more memory. The default values are high enough to gain most of the possible performance without using too much memory.</p>
<h3 id="buckets-and-regions">Buckets and Regions</h3>
<p>With Amazon S3 you can list buckets (<code>rclone lsd</code>) using any region, but you can only access the content of a bucket from the region it was created in. If you attempt to access a bucket from the wrong region, you will get an error, <code>incorrect region, the bucket is not in 'XXX' region</code>.</p>
<h3 id="authentication-4">Authentication</h3>
<p>There are a number of ways to supply <code>rclone</code> with a set of AWS credentials, with and without using the environment.</p>
<p>The different authentication methods are tried in this order:</p>
<ul>
<li>Directly in the rclone configuration file (<code>env_auth = false</code> in the config file):
<ul>
<li><code>access_key_id</code> and <code>secret_access_key</code> are required.</li>
<li><code>session_token</code> can be optionally set when using AWS STS.</li>
</ul></li>
<li>Runtime configuration (<code>env_auth = true</code> in the config file):
<ul>
<li>Export the following environment variables before running <code>rclone</code>:
<ul>
<li>Access Key ID: <code>AWS_ACCESS_KEY_ID</code> or <code>AWS_ACCESS_KEY</code></li>
<li>Secret Access Key: <code>AWS_SECRET_ACCESS_KEY</code> or <code>AWS_SECRET_KEY</code></li>
<li>Session Token: <code>AWS_SESSION_TOKEN</code> (optional)</li>
</ul></li>
<li>Or, use a <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-multiple-profiles.html">named profile</a>:
<ul>
<li>Profile files are standard files used by AWS CLI tools</li>
<li>By default it will use the profile in your home directory (eg <code>~/.aws/credentials</code> on unix based systems) file and the “default” profile, to change set these environment variables:
<ul>
<li><code>AWS_SHARED_CREDENTIALS_FILE</code> to control which file.</li>
<li><code>AWS_PROFILE</code> to control which profile to use.</li>
</ul></li>
</ul></li>
<li>Or, run <code>rclone</code> in an ECS task with an IAM role (AWS only).</li>
<li>Or, run <code>rclone</code> on an EC2 instance with an IAM role (AWS only).</li>
</ul></li>
</ul>
<p>If none of these option actually end up providing <code>rclone</code> with AWS credentials then S3 interaction will be non-authenticated (see below).</p>
<h3 id="s3-permissions">S3 Permissions</h3>
<p>When using the <code>sync</code> subcommand of <code>rclone</code> the following minimum permissions are required to be available on the bucket being written to:</p>
<ul>
<li><code>ListBucket</code></li>
<li><code>DeleteObject</code></li>
<li><code>GetObject</code></li>
<li><code>PutObject</code></li>
<li><code>PutObjectACL</code></li>
</ul>
<p>Example policy:</p>
<pre><code>{
&quot;Version&quot;: &quot;2012-10-17&quot;,
&quot;Statement&quot;: [
{
&quot;Effect&quot;: &quot;Allow&quot;,
&quot;Principal&quot;: {
&quot;AWS&quot;: &quot;arn:aws:iam::USER_SID:user/USER_NAME&quot;
},
&quot;Action&quot;: [
&quot;s3:ListBucket&quot;,
&quot;s3:DeleteObject&quot;,
&quot;s3:GetObject&quot;,
&quot;s3:PutObject&quot;,
&quot;s3:PutObjectAcl&quot;
],
&quot;Resource&quot;: [
&quot;arn:aws:s3:::BUCKET_NAME/*&quot;,
&quot;arn:aws:s3:::BUCKET_NAME&quot;
]
}
]
}</code></pre>
<p>Notes on above:</p>
<ol type="1">
<li>This is a policy that can be used when creating bucket. It assumes that <code>USER_NAME</code> has been created.</li>
<li>The Resource entry must include both resource ARNs, as one implies the bucket and the other implies the buckets objects.</li>
</ol>
<p>For reference, <a href="https://gist.github.com/ebridges/ebfc9042dd7c756cd101cfa807b7ae2b">heres an Ansible script</a> that will generate one or more buckets that will work with <code>rclone sync</code>.</p>
<h3 id="key-management-system-kms">Key Management System (KMS)</h3>
<p>If you are using server side encryption with KMS then you will find you cant transfer small objects. As a work-around you can use the <code>--ignore-checksum</code> flag.</p>
<p>A proper fix is being worked on in <a href="https://github.com/rclone/rclone/issues/1824">issue #1824</a>.</p>
<h3 id="glacier-and-glacier-deep-archive">Glacier and Glacier Deep Archive</h3>
<p>You can upload objects using the glacier storage class or transition them to glacier using a <a href="http://docs.aws.amazon.com/AmazonS3/latest/user-guide/create-lifecycle.html">lifecycle policy</a>. The bucket can still be synced or copied into normally, but if rclone tries to access data from the glacier storage class you will see an error like below.</p>
<pre><code>2017/09/11 19:07:43 Failed to sync: failed to open source object: Object in GLACIER, restore first: path/to/file</code></pre>
<p>In this case you need to <a href="http://docs.aws.amazon.com/AmazonS3/latest/user-guide/restore-archived-objects.html">restore</a> the object(s) in question before using rclone.</p>
<p>Note that rclone only speaks the S3 API it does not speak the Glacier Vault API, so rclone cannot directly access Glacier Vaults.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/s3/s3.go then run make backenddocs -->
<h3 id="standard-options-2">Standard Options</h3>
<p>Here are the standard options specific to s3 (Amazon S3 Compliant Storage Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)).</p>
<h4 id="s3-provider">s3-provider</h4>
<p>Choose your S3 provider.</p>
<ul>
<li>Config: provider</li>
<li>Env Var: RCLONE_S3_PROVIDER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“AWS”
<ul>
<li>Amazon Web Services (AWS) S3</li>
</ul></li>
<li>“Alibaba”
<ul>
<li>Alibaba Cloud Object Storage System (OSS) formerly Aliyun</li>
</ul></li>
<li>“Ceph”
<ul>
<li>Ceph Object Storage</li>
</ul></li>
<li>“DigitalOcean”
<ul>
<li>Digital Ocean Spaces</li>
</ul></li>
<li>“Dreamhost”
<ul>
<li>Dreamhost DreamObjects</li>
</ul></li>
<li>“IBMCOS”
<ul>
<li>IBM COS S3</li>
</ul></li>
<li>“Minio”
<ul>
<li>Minio Object Storage</li>
</ul></li>
<li>“Netease”
<ul>
<li>Netease Object Storage (NOS)</li>
</ul></li>
<li>“Wasabi”
<ul>
<li>Wasabi Object Storage</li>
</ul></li>
<li>“Other”
<ul>
<li>Any other S3 compatible provider</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-env-auth">s3-env-auth</h4>
<p>Get AWS credentials from runtime (environment variables or EC2/ECS meta data if no env vars). Only applies if access_key_id and secret_access_key is blank.</p>
<ul>
<li>Config: env_auth</li>
<li>Env Var: RCLONE_S3_ENV_AUTH</li>
<li>Type: bool</li>
<li>Default: false</li>
<li>Examples:
<ul>
<li>“false”
<ul>
<li>Enter AWS credentials in the next step</li>
</ul></li>
<li>“true”
<ul>
<li>Get AWS credentials from the environment (env vars or IAM)</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-access-key-id">s3-access-key-id</h4>
<p>AWS Access Key ID. Leave blank for anonymous access or runtime credentials.</p>
<ul>
<li>Config: access_key_id</li>
<li>Env Var: RCLONE_S3_ACCESS_KEY_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="s3-secret-access-key">s3-secret-access-key</h4>
<p>AWS Secret Access Key (password) Leave blank for anonymous access or runtime credentials.</p>
<ul>
<li>Config: secret_access_key</li>
<li>Env Var: RCLONE_S3_SECRET_ACCESS_KEY</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="s3-region">s3-region</h4>
<p>Region to connect to.</p>
<ul>
<li>Config: region</li>
<li>Env Var: RCLONE_S3_REGION</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“us-east-1”
<ul>
<li>The default endpoint - a good choice if you are unsure.</li>
<li>US Region, Northern Virginia or Pacific Northwest.</li>
<li>Leave location constraint empty.</li>
</ul></li>
<li>“us-east-2”
<ul>
<li>US East (Ohio) Region</li>
<li>Needs location constraint us-east-2.</li>
</ul></li>
<li>“us-west-2”
<ul>
<li>US West (Oregon) Region</li>
<li>Needs location constraint us-west-2.</li>
</ul></li>
<li>“us-west-1”
<ul>
<li>US West (Northern California) Region</li>
<li>Needs location constraint us-west-1.</li>
</ul></li>
<li>“ca-central-1”
<ul>
<li>Canada (Central) Region</li>
<li>Needs location constraint ca-central-1.</li>
</ul></li>
<li>“eu-west-1”
<ul>
<li>EU (Ireland) Region</li>
<li>Needs location constraint EU or eu-west-1.</li>
</ul></li>
<li>“eu-west-2”
<ul>
<li>EU (London) Region</li>
<li>Needs location constraint eu-west-2.</li>
</ul></li>
<li>“eu-north-1”
<ul>
<li>EU (Stockholm) Region</li>
<li>Needs location constraint eu-north-1.</li>
</ul></li>
<li>“eu-central-1”
<ul>
<li>EU (Frankfurt) Region</li>
<li>Needs location constraint eu-central-1.</li>
</ul></li>
<li>“ap-southeast-1”
<ul>
<li>Asia Pacific (Singapore) Region</li>
<li>Needs location constraint ap-southeast-1.</li>
</ul></li>
<li>“ap-southeast-2”
<ul>
<li>Asia Pacific (Sydney) Region</li>
<li>Needs location constraint ap-southeast-2.</li>
</ul></li>
<li>“ap-northeast-1”
<ul>
<li>Asia Pacific (Tokyo) Region</li>
<li>Needs location constraint ap-northeast-1.</li>
</ul></li>
<li>“ap-northeast-2”
<ul>
<li>Asia Pacific (Seoul)</li>
<li>Needs location constraint ap-northeast-2.</li>
</ul></li>
<li>“ap-south-1”
<ul>
<li>Asia Pacific (Mumbai)</li>
<li>Needs location constraint ap-south-1.</li>
</ul></li>
<li>“sa-east-1”
<ul>
<li>South America (Sao Paulo) Region</li>
<li>Needs location constraint sa-east-1.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-region-1">s3-region</h4>
<p>Region to connect to. Leave blank if you are using an S3 clone and you dont have a region.</p>
<ul>
<li>Config: region</li>
<li>Env Var: RCLONE_S3_REGION</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>Use this if unsure. Will use v4 signatures and an empty region.</li>
</ul></li>
<li>“other-v2-signature”
<ul>
<li>Use this only if v4 signatures dont work, eg pre Jewel/v10 CEPH.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-endpoint">s3-endpoint</h4>
<p>Endpoint for S3 API. Leave blank if using AWS to use the default endpoint for the region.</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_S3_ENDPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="s3-endpoint-1">s3-endpoint</h4>
<p>Endpoint for IBM COS S3 API. Specify if using an IBM COS On Premise.</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_S3_ENDPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“s3-api.us-geo.objectstorage.softlayer.net”
<ul>
<li>US Cross Region Endpoint</li>
</ul></li>
<li>“s3-api.dal.us-geo.objectstorage.softlayer.net”
<ul>
<li>US Cross Region Dallas Endpoint</li>
</ul></li>
<li>“s3-api.wdc-us-geo.objectstorage.softlayer.net”
<ul>
<li>US Cross Region Washington DC Endpoint</li>
</ul></li>
<li>“s3-api.sjc-us-geo.objectstorage.softlayer.net”
<ul>
<li>US Cross Region San Jose Endpoint</li>
</ul></li>
<li>“s3-api.us-geo.objectstorage.service.networklayer.com”
<ul>
<li>US Cross Region Private Endpoint</li>
</ul></li>
<li>“s3-api.dal-us-geo.objectstorage.service.networklayer.com”
<ul>
<li>US Cross Region Dallas Private Endpoint</li>
</ul></li>
<li>“s3-api.wdc-us-geo.objectstorage.service.networklayer.com”
<ul>
<li>US Cross Region Washington DC Private Endpoint</li>
</ul></li>
<li>“s3-api.sjc-us-geo.objectstorage.service.networklayer.com”
<ul>
<li>US Cross Region San Jose Private Endpoint</li>
</ul></li>
<li>“s3.us-east.objectstorage.softlayer.net”
<ul>
<li>US Region East Endpoint</li>
</ul></li>
<li>“s3.us-east.objectstorage.service.networklayer.com”
<ul>
<li>US Region East Private Endpoint</li>
</ul></li>
<li>“s3.us-south.objectstorage.softlayer.net”
<ul>
<li>US Region South Endpoint</li>
</ul></li>
<li>“s3.us-south.objectstorage.service.networklayer.com”
<ul>
<li>US Region South Private Endpoint</li>
</ul></li>
<li>“s3.eu-geo.objectstorage.softlayer.net”
<ul>
<li>EU Cross Region Endpoint</li>
</ul></li>
<li>“s3.fra-eu-geo.objectstorage.softlayer.net”
<ul>
<li>EU Cross Region Frankfurt Endpoint</li>
</ul></li>
<li>“s3.mil-eu-geo.objectstorage.softlayer.net”
<ul>
<li>EU Cross Region Milan Endpoint</li>
</ul></li>
<li>“s3.ams-eu-geo.objectstorage.softlayer.net”
<ul>
<li>EU Cross Region Amsterdam Endpoint</li>
</ul></li>
<li>“s3.eu-geo.objectstorage.service.networklayer.com”
<ul>
<li>EU Cross Region Private Endpoint</li>
</ul></li>
<li>“s3.fra-eu-geo.objectstorage.service.networklayer.com”
<ul>
<li>EU Cross Region Frankfurt Private Endpoint</li>
</ul></li>
<li>“s3.mil-eu-geo.objectstorage.service.networklayer.com”
<ul>
<li>EU Cross Region Milan Private Endpoint</li>
</ul></li>
<li>“s3.ams-eu-geo.objectstorage.service.networklayer.com”
<ul>
<li>EU Cross Region Amsterdam Private Endpoint</li>
</ul></li>
<li>“s3.eu-gb.objectstorage.softlayer.net”
<ul>
<li>Great Britain Endpoint</li>
</ul></li>
<li>“s3.eu-gb.objectstorage.service.networklayer.com”
<ul>
<li>Great Britain Private Endpoint</li>
</ul></li>
<li>“s3.ap-geo.objectstorage.softlayer.net”
<ul>
<li>APAC Cross Regional Endpoint</li>
</ul></li>
<li>“s3.tok-ap-geo.objectstorage.softlayer.net”
<ul>
<li>APAC Cross Regional Tokyo Endpoint</li>
</ul></li>
<li>“s3.hkg-ap-geo.objectstorage.softlayer.net”
<ul>
<li>APAC Cross Regional HongKong Endpoint</li>
</ul></li>
<li>“s3.seo-ap-geo.objectstorage.softlayer.net”
<ul>
<li>APAC Cross Regional Seoul Endpoint</li>
</ul></li>
<li>“s3.ap-geo.objectstorage.service.networklayer.com”
<ul>
<li>APAC Cross Regional Private Endpoint</li>
</ul></li>
<li>“s3.tok-ap-geo.objectstorage.service.networklayer.com”
<ul>
<li>APAC Cross Regional Tokyo Private Endpoint</li>
</ul></li>
<li>“s3.hkg-ap-geo.objectstorage.service.networklayer.com”
<ul>
<li>APAC Cross Regional HongKong Private Endpoint</li>
</ul></li>
<li>“s3.seo-ap-geo.objectstorage.service.networklayer.com”
<ul>
<li>APAC Cross Regional Seoul Private Endpoint</li>
</ul></li>
<li>“s3.mel01.objectstorage.softlayer.net”
<ul>
<li>Melbourne Single Site Endpoint</li>
</ul></li>
<li>“s3.mel01.objectstorage.service.networklayer.com”
<ul>
<li>Melbourne Single Site Private Endpoint</li>
</ul></li>
<li>“s3.tor01.objectstorage.softlayer.net”
<ul>
<li>Toronto Single Site Endpoint</li>
</ul></li>
<li>“s3.tor01.objectstorage.service.networklayer.com”
<ul>
<li>Toronto Single Site Private Endpoint</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-endpoint-2">s3-endpoint</h4>
<p>Endpoint for OSS API.</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_S3_ENDPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“oss-cn-hangzhou.aliyuncs.com”
<ul>
<li>East China 1 (Hangzhou)</li>
</ul></li>
<li>“oss-cn-shanghai.aliyuncs.com”
<ul>
<li>East China 2 (Shanghai)</li>
</ul></li>
<li>“oss-cn-qingdao.aliyuncs.com”
<ul>
<li>North China 1 (Qingdao)</li>
</ul></li>
<li>“oss-cn-beijing.aliyuncs.com”
<ul>
<li>North China 2 (Beijing)</li>
</ul></li>
<li>“oss-cn-zhangjiakou.aliyuncs.com”
<ul>
<li>North China 3 (Zhangjiakou)</li>
</ul></li>
<li>“oss-cn-huhehaote.aliyuncs.com”
<ul>
<li>North China 5 (Huhehaote)</li>
</ul></li>
<li>“oss-cn-shenzhen.aliyuncs.com”
<ul>
<li>South China 1 (Shenzhen)</li>
</ul></li>
<li>“oss-cn-hongkong.aliyuncs.com”
<ul>
<li>Hong Kong (Hong Kong)</li>
</ul></li>
<li>“oss-us-west-1.aliyuncs.com”
<ul>
<li>US West 1 (Silicon Valley)</li>
</ul></li>
<li>“oss-us-east-1.aliyuncs.com”
<ul>
<li>US East 1 (Virginia)</li>
</ul></li>
<li>“oss-ap-southeast-1.aliyuncs.com”
<ul>
<li>Southeast Asia Southeast 1 (Singapore)</li>
</ul></li>
<li>“oss-ap-southeast-2.aliyuncs.com”
<ul>
<li>Asia Pacific Southeast 2 (Sydney)</li>
</ul></li>
<li>“oss-ap-southeast-3.aliyuncs.com”
<ul>
<li>Southeast Asia Southeast 3 (Kuala Lumpur)</li>
</ul></li>
<li>“oss-ap-southeast-5.aliyuncs.com”
<ul>
<li>Asia Pacific Southeast 5 (Jakarta)</li>
</ul></li>
<li>“oss-ap-northeast-1.aliyuncs.com”
<ul>
<li>Asia Pacific Northeast 1 (Japan)</li>
</ul></li>
<li>“oss-ap-south-1.aliyuncs.com”
<ul>
<li>Asia Pacific South 1 (Mumbai)</li>
</ul></li>
<li>“oss-eu-central-1.aliyuncs.com”
<ul>
<li>Central Europe 1 (Frankfurt)</li>
</ul></li>
<li>“oss-eu-west-1.aliyuncs.com”
<ul>
<li>West Europe (London)</li>
</ul></li>
<li>“oss-me-east-1.aliyuncs.com”
<ul>
<li>Middle East 1 (Dubai)</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-endpoint-3">s3-endpoint</h4>
<p>Endpoint for S3 API. Required when using an S3 clone.</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_S3_ENDPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“objects-us-east-1.dream.io”
<ul>
<li>Dream Objects endpoint</li>
</ul></li>
<li>“nyc3.digitaloceanspaces.com”
<ul>
<li>Digital Ocean Spaces New York 3</li>
</ul></li>
<li>“ams3.digitaloceanspaces.com”
<ul>
<li>Digital Ocean Spaces Amsterdam 3</li>
</ul></li>
<li>“sgp1.digitaloceanspaces.com”
<ul>
<li>Digital Ocean Spaces Singapore 1</li>
</ul></li>
<li>“s3.wasabisys.com”
<ul>
<li>Wasabi US East endpoint</li>
</ul></li>
<li>“s3.us-west-1.wasabisys.com”
<ul>
<li>Wasabi US West endpoint</li>
</ul></li>
<li>“s3.eu-central-1.wasabisys.com”
<ul>
<li>Wasabi EU Central endpoint</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-location-constraint">s3-location-constraint</h4>
<p>Location constraint - must be set to match the Region. Used when creating buckets only.</p>
<ul>
<li>Config: location_constraint</li>
<li>Env Var: RCLONE_S3_LOCATION_CONSTRAINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>Empty for US Region, Northern Virginia or Pacific Northwest.</li>
</ul></li>
<li>“us-east-2”
<ul>
<li>US East (Ohio) Region.</li>
</ul></li>
<li>“us-west-2”
<ul>
<li>US West (Oregon) Region.</li>
</ul></li>
<li>“us-west-1”
<ul>
<li>US West (Northern California) Region.</li>
</ul></li>
<li>“ca-central-1”
<ul>
<li>Canada (Central) Region.</li>
</ul></li>
<li>“eu-west-1”
<ul>
<li>EU (Ireland) Region.</li>
</ul></li>
<li>“eu-west-2”
<ul>
<li>EU (London) Region.</li>
</ul></li>
<li>“eu-north-1”
<ul>
<li>EU (Stockholm) Region.</li>
</ul></li>
<li>“EU”
<ul>
<li>EU Region.</li>
</ul></li>
<li>“ap-southeast-1”
<ul>
<li>Asia Pacific (Singapore) Region.</li>
</ul></li>
<li>“ap-southeast-2”
<ul>
<li>Asia Pacific (Sydney) Region.</li>
</ul></li>
<li>“ap-northeast-1”
<ul>
<li>Asia Pacific (Tokyo) Region.</li>
</ul></li>
<li>“ap-northeast-2”
<ul>
<li>Asia Pacific (Seoul)</li>
</ul></li>
<li>“ap-south-1”
<ul>
<li>Asia Pacific (Mumbai)</li>
</ul></li>
<li>“sa-east-1”
<ul>
<li>South America (Sao Paulo) Region.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-location-constraint-1">s3-location-constraint</h4>
<p>Location constraint - must match endpoint when using IBM Cloud Public. For on-prem COS, do not make a selection from this list, hit enter</p>
<ul>
<li>Config: location_constraint</li>
<li>Env Var: RCLONE_S3_LOCATION_CONSTRAINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“us-standard”
<ul>
<li>US Cross Region Standard</li>
</ul></li>
<li>“us-vault”
<ul>
<li>US Cross Region Vault</li>
</ul></li>
<li>“us-cold”
<ul>
<li>US Cross Region Cold</li>
</ul></li>
<li>“us-flex”
<ul>
<li>US Cross Region Flex</li>
</ul></li>
<li>“us-east-standard”
<ul>
<li>US East Region Standard</li>
</ul></li>
<li>“us-east-vault”
<ul>
<li>US East Region Vault</li>
</ul></li>
<li>“us-east-cold”
<ul>
<li>US East Region Cold</li>
</ul></li>
<li>“us-east-flex”
<ul>
<li>US East Region Flex</li>
</ul></li>
<li>“us-south-standard”
<ul>
<li>US South Region Standard</li>
</ul></li>
<li>“us-south-vault”
<ul>
<li>US South Region Vault</li>
</ul></li>
<li>“us-south-cold”
<ul>
<li>US South Region Cold</li>
</ul></li>
<li>“us-south-flex”
<ul>
<li>US South Region Flex</li>
</ul></li>
<li>“eu-standard”
<ul>
<li>EU Cross Region Standard</li>
</ul></li>
<li>“eu-vault”
<ul>
<li>EU Cross Region Vault</li>
</ul></li>
<li>“eu-cold”
<ul>
<li>EU Cross Region Cold</li>
</ul></li>
<li>“eu-flex”
<ul>
<li>EU Cross Region Flex</li>
</ul></li>
<li>“eu-gb-standard”
<ul>
<li>Great Britain Standard</li>
</ul></li>
<li>“eu-gb-vault”
<ul>
<li>Great Britain Vault</li>
</ul></li>
<li>“eu-gb-cold”
<ul>
<li>Great Britain Cold</li>
</ul></li>
<li>“eu-gb-flex”
<ul>
<li>Great Britain Flex</li>
</ul></li>
<li>“ap-standard”
<ul>
<li>APAC Standard</li>
</ul></li>
<li>“ap-vault”
<ul>
<li>APAC Vault</li>
</ul></li>
<li>“ap-cold”
<ul>
<li>APAC Cold</li>
</ul></li>
<li>“ap-flex”
<ul>
<li>APAC Flex</li>
</ul></li>
<li>“mel01-standard”
<ul>
<li>Melbourne Standard</li>
</ul></li>
<li>“mel01-vault”
<ul>
<li>Melbourne Vault</li>
</ul></li>
<li>“mel01-cold”
<ul>
<li>Melbourne Cold</li>
</ul></li>
<li>“mel01-flex”
<ul>
<li>Melbourne Flex</li>
</ul></li>
<li>“tor01-standard”
<ul>
<li>Toronto Standard</li>
</ul></li>
<li>“tor01-vault”
<ul>
<li>Toronto Vault</li>
</ul></li>
<li>“tor01-cold”
<ul>
<li>Toronto Cold</li>
</ul></li>
<li>“tor01-flex”
<ul>
<li>Toronto Flex</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-location-constraint-2">s3-location-constraint</h4>
<p>Location constraint - must be set to match the Region. Leave blank if not sure. Used when creating buckets only.</p>
<ul>
<li>Config: location_constraint</li>
<li>Env Var: RCLONE_S3_LOCATION_CONSTRAINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="s3-acl">s3-acl</h4>
<p>Canned ACL used when creating buckets and storing or copying objects.</p>
<p>This ACL is used for creating objects and if bucket_acl isnt set, for creating buckets too.</p>
<p>For more info visit https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl</p>
<p>Note that this ACL is applied when server side copying objects as S3 doesnt copy the ACL from the source but rather writes a fresh one.</p>
<ul>
<li>Config: acl</li>
<li>Env Var: RCLONE_S3_ACL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“private”
<ul>
<li>Owner gets FULL_CONTROL. No one else has access rights (default).</li>
</ul></li>
<li>“public-read”
<ul>
<li>Owner gets FULL_CONTROL. The AllUsers group gets READ access.</li>
</ul></li>
<li>“public-read-write”
<ul>
<li>Owner gets FULL_CONTROL. The AllUsers group gets READ and WRITE access.</li>
<li>Granting this on a bucket is generally not recommended.</li>
</ul></li>
<li>“authenticated-read”
<ul>
<li>Owner gets FULL_CONTROL. The AuthenticatedUsers group gets READ access.</li>
</ul></li>
<li>“bucket-owner-read”
<ul>
<li>Object owner gets FULL_CONTROL. Bucket owner gets READ access.</li>
<li>If you specify this canned ACL when creating a bucket, Amazon S3 ignores it.</li>
</ul></li>
<li>“bucket-owner-full-control”
<ul>
<li>Both the object owner and the bucket owner get FULL_CONTROL over the object.</li>
<li>If you specify this canned ACL when creating a bucket, Amazon S3 ignores it.</li>
</ul></li>
<li>“private”
<ul>
<li>Owner gets FULL_CONTROL. No one else has access rights (default). This acl is available on IBM Cloud (Infra), IBM Cloud (Storage), On-Premise COS</li>
</ul></li>
<li>“public-read”
<ul>
<li>Owner gets FULL_CONTROL. The AllUsers group gets READ access. This acl is available on IBM Cloud (Infra), IBM Cloud (Storage), On-Premise IBM COS</li>
</ul></li>
<li>“public-read-write”
<ul>
<li>Owner gets FULL_CONTROL. The AllUsers group gets READ and WRITE access. This acl is available on IBM Cloud (Infra), On-Premise IBM COS</li>
</ul></li>
<li>“authenticated-read”
<ul>
<li>Owner gets FULL_CONTROL. The AuthenticatedUsers group gets READ access. Not supported on Buckets. This acl is available on IBM Cloud (Infra) and On-Premise IBM COS</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-server-side-encryption">s3-server-side-encryption</h4>
<p>The server-side encryption algorithm used when storing this object in S3.</p>
<ul>
<li>Config: server_side_encryption</li>
<li>Env Var: RCLONE_S3_SERVER_SIDE_ENCRYPTION</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>None</li>
</ul></li>
<li>“AES256”
<ul>
<li>AES256</li>
</ul></li>
<li>“aws:kms”
<ul>
<li>aws:kms</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-sse-kms-key-id">s3-sse-kms-key-id</h4>
<p>If using KMS ID you must provide the ARN of Key.</p>
<ul>
<li>Config: sse_kms_key_id</li>
<li>Env Var: RCLONE_S3_SSE_KMS_KEY_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>None</li>
</ul></li>
<li>&quot;arn:aws:kms:us-east-1:*&quot;
<ul>
<li>arn:aws:kms:*</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-storage-class">s3-storage-class</h4>
<p>The storage class to use when storing new objects in S3.</p>
<ul>
<li>Config: storage_class</li>
<li>Env Var: RCLONE_S3_STORAGE_CLASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>Default</li>
</ul></li>
<li>“STANDARD”
<ul>
<li>Standard storage class</li>
</ul></li>
<li>“REDUCED_REDUNDANCY”
<ul>
<li>Reduced redundancy storage class</li>
</ul></li>
<li>“STANDARD_IA”
<ul>
<li>Standard Infrequent Access storage class</li>
</ul></li>
<li>“ONEZONE_IA”
<ul>
<li>One Zone Infrequent Access storage class</li>
</ul></li>
<li>“GLACIER”
<ul>
<li>Glacier storage class</li>
</ul></li>
<li>“DEEP_ARCHIVE”
<ul>
<li>Glacier Deep Archive storage class</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-storage-class-1">s3-storage-class</h4>
<p>The storage class to use when storing new objects in OSS.</p>
<ul>
<li>Config: storage_class</li>
<li>Env Var: RCLONE_S3_STORAGE_CLASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>Default</li>
</ul></li>
<li>“STANDARD”
<ul>
<li>Standard storage class</li>
</ul></li>
<li>“GLACIER”
<ul>
<li>Archive storage mode.</li>
</ul></li>
<li>“STANDARD_IA”
<ul>
<li>Infrequent access storage mode.</li>
</ul></li>
</ul></li>
</ul>
<h3 id="advanced-options-1">Advanced Options</h3>
<p>Here are the advanced options specific to s3 (Amazon S3 Compliant Storage Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)).</p>
<h4 id="s3-bucket-acl">s3-bucket-acl</h4>
<p>Canned ACL used when creating buckets.</p>
<p>For more info visit https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl</p>
<p>Note that this ACL is applied when only when creating buckets. If it isnt set then “acl” is used instead.</p>
<ul>
<li>Config: bucket_acl</li>
<li>Env Var: RCLONE_S3_BUCKET_ACL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“private”
<ul>
<li>Owner gets FULL_CONTROL. No one else has access rights (default).</li>
</ul></li>
<li>“public-read”
<ul>
<li>Owner gets FULL_CONTROL. The AllUsers group gets READ access.</li>
</ul></li>
<li>“public-read-write”
<ul>
<li>Owner gets FULL_CONTROL. The AllUsers group gets READ and WRITE access.</li>
<li>Granting this on a bucket is generally not recommended.</li>
</ul></li>
<li>“authenticated-read”
<ul>
<li>Owner gets FULL_CONTROL. The AuthenticatedUsers group gets READ access.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="s3-upload-cutoff">s3-upload-cutoff</h4>
<p>Cutoff for switching to chunked upload</p>
<p>Any files larger than this will be uploaded in chunks of chunk_size. The minimum is 0 and the maximum is 5GB.</p>
<ul>
<li>Config: upload_cutoff</li>
<li>Env Var: RCLONE_S3_UPLOAD_CUTOFF</li>
<li>Type: SizeSuffix</li>
<li>Default: 200M</li>
</ul>
<h4 id="s3-chunk-size">s3-chunk-size</h4>
<p>Chunk size to use for uploading.</p>
<p>When uploading files larger than upload_cutoff they will be uploaded as multipart uploads using this chunk size.</p>
<p>Note that “s3-upload-concurrency” chunks of this size are buffered in memory per transfer.</p>
<p>If you are transferring large files over high speed links and you have enough memory, then increasing this will speed up the transfers.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_S3_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 5M</li>
</ul>
<h4 id="s3-disable-checksum">s3-disable-checksum</h4>
<p>Dont store MD5 checksum with object metadata</p>
<ul>
<li>Config: disable_checksum</li>
<li>Env Var: RCLONE_S3_DISABLE_CHECKSUM</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="s3-session-token">s3-session-token</h4>
<p>An AWS session token</p>
<ul>
<li>Config: session_token</li>
<li>Env Var: RCLONE_S3_SESSION_TOKEN</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="s3-upload-concurrency">s3-upload-concurrency</h4>
<p>Concurrency for multipart uploads.</p>
<p>This is the number of chunks of the same file that are uploaded concurrently.</p>
<p>If you are uploading small numbers of large file over high speed link and these uploads do not fully utilize your bandwidth, then increasing this may help to speed up the transfers.</p>
<ul>
<li>Config: upload_concurrency</li>
<li>Env Var: RCLONE_S3_UPLOAD_CONCURRENCY</li>
<li>Type: int</li>
<li>Default: 4</li>
</ul>
<h4 id="s3-force-path-style">s3-force-path-style</h4>
<p>If true use path style access if false use virtual hosted style.</p>
<p>If this is true (the default) then rclone will use path style access, if false then rclone will use virtual path style. See <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html#access-bucket-intro">the AWS S3 docs</a> for more info.</p>
<p>Some providers (eg Aliyun OSS or Netease COS) require this set to false.</p>
<ul>
<li>Config: force_path_style</li>
<li>Env Var: RCLONE_S3_FORCE_PATH_STYLE</li>
<li>Type: bool</li>
<li>Default: true</li>
</ul>
<h4 id="s3-v2-auth">s3-v2-auth</h4>
<p>If true use v2 authentication.</p>
<p>If this is false (the default) then rclone will use v4 authentication. If it is set then rclone will use v2 authentication.</p>
<p>Use this only if v4 signatures dont work, eg pre Jewel/v10 CEPH.</p>
<ul>
<li>Config: v2_auth</li>
<li>Env Var: RCLONE_S3_V2_AUTH</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="s3-use-accelerate-endpoint">s3-use-accelerate-endpoint</h4>
<p>If true use the AWS S3 accelerated endpoint.</p>
<p>See: <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration-examples.html">AWS S3 Transfer acceleration</a></p>
<ul>
<li>Config: use_accelerate_endpoint</li>
<li>Env Var: RCLONE_S3_USE_ACCELERATE_ENDPOINT</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="anonymous-access-to-public-buckets">Anonymous access to public buckets</h3>
<p>If you want to use rclone to access a public bucket, configure with a blank <code>access_key_id</code> and <code>secret_access_key</code>. Your config should end up looking like this:</p>
<pre><code>[anons3]
type = s3
provider = AWS
env_auth = false
access_key_id =
secret_access_key =
region = us-east-1
endpoint =
location_constraint =
acl = private
server_side_encryption =
storage_class = </code></pre>
<p>Then use it as normal with the name of the public bucket, eg</p>
<pre><code>rclone lsd anons3:1000genomes</code></pre>
<p>You will be able to list and copy data but not upload it.</p>
<h3 id="ceph">Ceph</h3>
<p><a href="https://ceph.com/">Ceph</a> is an open source unified, distributed storage system designed for excellent performance, reliability and scalability. It has an S3 compatible object storage interface.</p>
<p>To use rclone with Ceph, configure as above but leave the region blank and set the endpoint. You should end up with something like this in your config:</p>
<pre><code>[ceph]
type = s3
provider = Ceph
env_auth = false
access_key_id = XXX
secret_access_key = YYY
region =
endpoint = https://ceph.endpoint.example.com
location_constraint =
acl =
server_side_encryption =
storage_class =</code></pre>
<p>If you are using an older version of CEPH, eg 10.2.x Jewel, then you may need to supply the parameter <code>--s3-upload-cutoff 0</code> or put this in the config file as <code>upload_cutoff 0</code> to work around a bug which causes uploading of small files to fail.</p>
<p>Note also that Ceph sometimes puts <code>/</code> in the passwords it gives users. If you read the secret access key using the command line tools you will get a JSON blob with the <code>/</code> escaped as <code>\/</code>. Make sure you only write <code>/</code> in the secret access key.</p>
<p>Eg the dump from Ceph looks something like this (irrelevant keys removed).</p>
<pre><code>{
&quot;user_id&quot;: &quot;xxx&quot;,
&quot;display_name&quot;: &quot;xxxx&quot;,
&quot;keys&quot;: [
{
&quot;user&quot;: &quot;xxx&quot;,
&quot;access_key&quot;: &quot;xxxxxx&quot;,
&quot;secret_key&quot;: &quot;xxxxxx\/xxxx&quot;
}
],
}</code></pre>
<p>Because this is a json dump, it is encoding the <code>/</code> as <code>\/</code>, so if you use the secret key as <code>xxxxxx/xxxx</code> it will work fine.</p>
<h3 id="dreamhost">Dreamhost</h3>
<p>Dreamhost <a href="https://www.dreamhost.com/cloud/storage/">DreamObjects</a> is an object storage system based on CEPH.</p>
<p>To use rclone with Dreamhost, configure as above but leave the region blank and set the endpoint. You should end up with something like this in your config:</p>
<pre><code>[dreamobjects]
type = s3
provider = DreamHost
env_auth = false
access_key_id = your_access_key
secret_access_key = your_secret_key
region =
endpoint = objects-us-west-1.dream.io
location_constraint =
acl = private
server_side_encryption =
storage_class =</code></pre>
<h3 id="digitalocean-spaces">DigitalOcean Spaces</h3>
<p><a href="https://www.digitalocean.com/products/object-storage/">Spaces</a> is an <a href="https://developers.digitalocean.com/documentation/spaces/">S3-interoperable</a> object storage service from cloud provider DigitalOcean.</p>
<p>To connect to DigitalOcean Spaces you will need an access key and secret key. These can be retrieved on the “<a href="https://cloud.digitalocean.com/settings/api/tokens">Applications &amp; API</a>” page of the DigitalOcean control panel. They will be needed when promted by <code>rclone config</code> for your <code>access_key_id</code> and <code>secret_access_key</code>.</p>
<p>When prompted for a <code>region</code> or <code>location_constraint</code>, press enter to use the default value. The region must be included in the <code>endpoint</code> setting (e.g. <code>nyc3.digitaloceanspaces.com</code>). The default values can be used for other settings.</p>
<p>Going through the whole process of creating a new remote by running <code>rclone config</code>, each prompt should be answered as shown below:</p>
<pre><code>Storage&gt; s3
env_auth&gt; 1
access_key_id&gt; YOUR_ACCESS_KEY
secret_access_key&gt; YOUR_SECRET_KEY
region&gt;
endpoint&gt; nyc3.digitaloceanspaces.com
location_constraint&gt;
acl&gt;
storage_class&gt;</code></pre>
<p>The resulting configuration file should look like:</p>
<pre><code>[spaces]
type = s3
provider = DigitalOcean
env_auth = false
access_key_id = YOUR_ACCESS_KEY
secret_access_key = YOUR_SECRET_KEY
region =
endpoint = nyc3.digitaloceanspaces.com
location_constraint =
acl =
server_side_encryption =
storage_class =</code></pre>
<p>Once configured, you can create a new Space and begin copying files. For example:</p>
<pre><code>rclone mkdir spaces:my-new-space
rclone copy /path/to/files spaces:my-new-space</code></pre>
<h3 id="ibm-cos-s3">IBM COS (S3)</h3>
<p>Information stored with IBM Cloud Object Storage is encrypted and dispersed across multiple geographic locations, and accessed through an implementation of the S3 API. This service makes use of the distributed storage technologies provided by IBMs Cloud Object Storage System (formerly Cleversafe). For more information visit: (http://www.ibm.com/cloud/object-storage)</p>
<p>To configure access to IBM COS S3, follow the steps below:</p>
<ol type="1">
<li>Run rclone config and select n for a new remote.</li>
</ol>
<pre><code> 2018/02/14 14:13:11 NOTICE: Config file &quot;C:\\Users\\a\\.config\\rclone\\rclone.conf&quot; not found - using defaults
No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n</code></pre>
<ol start="2" type="1">
<li>Enter the name for the configuration</li>
</ol>
<pre><code> name&gt; &lt;YOUR NAME&gt;</code></pre>
<ol start="3" type="1">
<li>Select “s3” storage.</li>
</ol>
<pre><code>Choose a number from below, or type in your own value
1 / Alias for an existing remote
\ &quot;alias&quot;
2 / Amazon Drive
\ &quot;amazon cloud drive&quot;
3 / Amazon S3 Complaint Storage Providers (Dreamhost, Ceph, Minio, IBM COS)
\ &quot;s3&quot;
4 / Backblaze B2
\ &quot;b2&quot;
[snip]
23 / http Connection
\ &quot;http&quot;
Storage&gt; 3</code></pre>
<ol start="4" type="1">
<li>Select IBM COS as the S3 Storage Provider.</li>
</ol>
<pre><code>Choose the S3 provider.
Choose a number from below, or type in your own value
1 / Choose this option to configure Storage to AWS S3
\ &quot;AWS&quot;
2 / Choose this option to configure Storage to Ceph Systems
\ &quot;Ceph&quot;
3 / Choose this option to configure Storage to Dreamhost
\ &quot;Dreamhost&quot;
4 / Choose this option to the configure Storage to IBM COS S3
\ &quot;IBMCOS&quot;
5 / Choose this option to the configure Storage to Minio
\ &quot;Minio&quot;
Provider&gt;4</code></pre>
<ol start="5" type="1">
<li>Enter the Access Key and Secret.</li>
</ol>
<pre><code> AWS Access Key ID - leave blank for anonymous access or runtime credentials.
access_key_id&gt; &lt;&gt;
AWS Secret Access Key (password) - leave blank for anonymous access or runtime credentials.
secret_access_key&gt; &lt;&gt;</code></pre>
<ol start="6" type="1">
<li>Specify the endpoint for IBM COS. For Public IBM COS, choose from the option below. For On Premise IBM COS, enter an enpoint address.</li>
</ol>
<pre><code> Endpoint for IBM COS S3 API.
Specify if using an IBM COS On Premise.
Choose a number from below, or type in your own value
1 / US Cross Region Endpoint
\ &quot;s3-api.us-geo.objectstorage.softlayer.net&quot;
2 / US Cross Region Dallas Endpoint
\ &quot;s3-api.dal.us-geo.objectstorage.softlayer.net&quot;
3 / US Cross Region Washington DC Endpoint
\ &quot;s3-api.wdc-us-geo.objectstorage.softlayer.net&quot;
4 / US Cross Region San Jose Endpoint
\ &quot;s3-api.sjc-us-geo.objectstorage.softlayer.net&quot;
5 / US Cross Region Private Endpoint
\ &quot;s3-api.us-geo.objectstorage.service.networklayer.com&quot;
6 / US Cross Region Dallas Private Endpoint
\ &quot;s3-api.dal-us-geo.objectstorage.service.networklayer.com&quot;
7 / US Cross Region Washington DC Private Endpoint
\ &quot;s3-api.wdc-us-geo.objectstorage.service.networklayer.com&quot;
8 / US Cross Region San Jose Private Endpoint
\ &quot;s3-api.sjc-us-geo.objectstorage.service.networklayer.com&quot;
9 / US Region East Endpoint
\ &quot;s3.us-east.objectstorage.softlayer.net&quot;
10 / US Region East Private Endpoint
\ &quot;s3.us-east.objectstorage.service.networklayer.com&quot;
11 / US Region South Endpoint
[snip]
34 / Toronto Single Site Private Endpoint
\ &quot;s3.tor01.objectstorage.service.networklayer.com&quot;
endpoint&gt;1</code></pre>
<ol start="7" type="1">
<li>Specify a IBM COS Location Constraint. The location constraint must match endpoint when using IBM Cloud Public. For on-prem COS, do not make a selection from this list, hit enter</li>
</ol>
<pre><code> 1 / US Cross Region Standard
\ &quot;us-standard&quot;
2 / US Cross Region Vault
\ &quot;us-vault&quot;
3 / US Cross Region Cold
\ &quot;us-cold&quot;
4 / US Cross Region Flex
\ &quot;us-flex&quot;
5 / US East Region Standard
\ &quot;us-east-standard&quot;
6 / US East Region Vault
\ &quot;us-east-vault&quot;
7 / US East Region Cold
\ &quot;us-east-cold&quot;
8 / US East Region Flex
\ &quot;us-east-flex&quot;
9 / US South Region Standard
\ &quot;us-south-standard&quot;
10 / US South Region Vault
\ &quot;us-south-vault&quot;
[snip]
32 / Toronto Flex
\ &quot;tor01-flex&quot;
location_constraint&gt;1</code></pre>
<ol start="9" type="1">
<li>Specify a canned ACL. IBM Cloud (Strorage) supports “public-read” and “private”. IBM Cloud(Infra) supports all the canned ACLs. On-Premise COS supports all the canned ACLs.</li>
</ol>
<pre><code>Canned ACL used when creating buckets and/or storing objects in S3.
For more info visit https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl
Choose a number from below, or type in your own value
1 / Owner gets FULL_CONTROL. No one else has access rights (default). This acl is available on IBM Cloud (Infra), IBM Cloud (Storage), On-Premise COS
\ &quot;private&quot;
2 / Owner gets FULL_CONTROL. The AllUsers group gets READ access. This acl is available on IBM Cloud (Infra), IBM Cloud (Storage), On-Premise IBM COS
\ &quot;public-read&quot;
3 / Owner gets FULL_CONTROL. The AllUsers group gets READ and WRITE access. This acl is available on IBM Cloud (Infra), On-Premise IBM COS
\ &quot;public-read-write&quot;
4 / Owner gets FULL_CONTROL. The AuthenticatedUsers group gets READ access. Not supported on Buckets. This acl is available on IBM Cloud (Infra) and On-Premise IBM COS
\ &quot;authenticated-read&quot;
acl&gt; 1</code></pre>
<ol start="12" type="1">
<li>Review the displayed configuration and accept to save the “remote” then quit. The config file should look like this</li>
</ol>
<pre><code> [xxx]
type = s3
Provider = IBMCOS
access_key_id = xxx
secret_access_key = yyy
endpoint = s3-api.us-geo.objectstorage.softlayer.net
location_constraint = us-standard
acl = private</code></pre>
<ol start="13" type="1">
<li>Execute rclone commands</li>
</ol>
<pre><code> 1) Create a bucket.
rclone mkdir IBM-COS-XREGION:newbucket
2) List available buckets.
rclone lsd IBM-COS-XREGION:
-1 2017-11-08 21:16:22 -1 test
-1 2018-02-14 20:16:39 -1 newbucket
3) List contents of a bucket.
rclone ls IBM-COS-XREGION:newbucket
18685952 test.exe
4) Copy a file from local to remote.
rclone copy /Users/file.txt IBM-COS-XREGION:newbucket
5) Copy a file from remote to local.
rclone copy IBM-COS-XREGION:newbucket/file.txt .
6) Delete a file on remote.
rclone delete IBM-COS-XREGION:newbucket/file.txt</code></pre>
<h3 id="minio">Minio</h3>
<p><a href="https://minio.io/">Minio</a> is an object storage server built for cloud application developers and devops.</p>
<p>It is very easy to install and provides an S3 compatible server which can be used by rclone.</p>
<p>To use it, install Minio following the instructions <a href="https://docs.minio.io/docs/minio-quickstart-guide">here</a>.</p>
<p>When it configures itself Minio will print something like this</p>
<pre><code>Endpoint: http://192.168.1.106:9000 http://172.23.0.1:9000
AccessKey: USWUXHGYZQYFYFFIT3RE
SecretKey: MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
Region: us-east-1
SQS ARNs: arn:minio:sqs:us-east-1:1:redis arn:minio:sqs:us-east-1:2:redis
Browser Access:
http://192.168.1.106:9000 http://172.23.0.1:9000
Command-line Access: https://docs.minio.io/docs/minio-client-quickstart-guide
$ mc config host add myminio http://192.168.1.106:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
Object API (Amazon S3 compatible):
Go: https://docs.minio.io/docs/golang-client-quickstart-guide
Java: https://docs.minio.io/docs/java-client-quickstart-guide
Python: https://docs.minio.io/docs/python-client-quickstart-guide
JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
.NET: https://docs.minio.io/docs/dotnet-client-quickstart-guide
Drive Capacity: 26 GiB Free, 165 GiB Total</code></pre>
<p>These details need to go into <code>rclone config</code> like this. Note that it is important to put the region in as stated above.</p>
<pre><code>env_auth&gt; 1
access_key_id&gt; USWUXHGYZQYFYFFIT3RE
secret_access_key&gt; MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
region&gt; us-east-1
endpoint&gt; http://192.168.1.106:9000
location_constraint&gt;
server_side_encryption&gt;</code></pre>
<p>Which makes the config file look like this</p>
<pre><code>[minio]
type = s3
provider = Minio
env_auth = false
access_key_id = USWUXHGYZQYFYFFIT3RE
secret_access_key = MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
region = us-east-1
endpoint = http://192.168.1.106:9000
location_constraint =
server_side_encryption =</code></pre>
<p>So once set up, for example to copy files into a bucket</p>
<pre><code>rclone copy /path/to/files minio:bucket</code></pre>
<h3 id="scaleway">Scaleway</h3>
<p><a href="https://www.scaleway.com/object-storage/">Scaleway</a> The Object Storage platform allows you to store anything from backups, logs and web assets to documents and photos. Files can be dropped from the Scaleway console or transferred through our API and CLI or using any S3-compatible tool.</p>
<p>Scaleway provides an S3 interface which can be configured for use with rclone like this:</p>
<pre><code>[scaleway]
type = s3
env_auth = false
endpoint = s3.nl-ams.scw.cloud
access_key_id = SCWXXXXXXXXXXXXXX
secret_access_key = 1111111-2222-3333-44444-55555555555555
region = nl-ams
location_constraint =
acl = private
force_path_style = false
server_side_encryption =
storage_class =</code></pre>
<h3 id="wasabi">Wasabi</h3>
<p><a href="https://wasabi.com">Wasabi</a> is a cloud-based object storage service for a broad range of applications and use cases. Wasabi is designed for individuals and organizations that require a high-performance, reliable, and secure data storage infrastructure at minimal cost.</p>
<p>Wasabi provides an S3 interface which can be configured for use with rclone like this.</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
n/s&gt; n
name&gt; wasabi
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
[snip]
Storage&gt; s3
Get AWS credentials from runtime (environment variables or EC2/ECS meta data if no env vars). Only applies if access_key_id and secret_access_key is blank.
Choose a number from below, or type in your own value
1 / Enter AWS credentials in the next step
\ &quot;false&quot;
2 / Get AWS credentials from the environment (env vars or IAM)
\ &quot;true&quot;
env_auth&gt; 1
AWS Access Key ID - leave blank for anonymous access or runtime credentials.
access_key_id&gt; YOURACCESSKEY
AWS Secret Access Key (password) - leave blank for anonymous access or runtime credentials.
secret_access_key&gt; YOURSECRETACCESSKEY
Region to connect to.
Choose a number from below, or type in your own value
/ The default endpoint - a good choice if you are unsure.
1 | US Region, Northern Virginia or Pacific Northwest.
| Leave location constraint empty.
\ &quot;us-east-1&quot;
[snip]
region&gt; us-east-1
Endpoint for S3 API.
Leave blank if using AWS to use the default endpoint for the region.
Specify if using an S3 clone such as Ceph.
endpoint&gt; s3.wasabisys.com
Location constraint - must be set to match the Region. Used when creating buckets only.
Choose a number from below, or type in your own value
1 / Empty for US Region, Northern Virginia or Pacific Northwest.
\ &quot;&quot;
[snip]
location_constraint&gt;
Canned ACL used when creating buckets and/or storing objects in S3.
For more info visit https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl
Choose a number from below, or type in your own value
1 / Owner gets FULL_CONTROL. No one else has access rights (default).
\ &quot;private&quot;
[snip]
acl&gt;
The server-side encryption algorithm used when storing this object in S3.
Choose a number from below, or type in your own value
1 / None
\ &quot;&quot;
2 / AES256
\ &quot;AES256&quot;
server_side_encryption&gt;
The storage class to use when storing objects in S3.
Choose a number from below, or type in your own value
1 / Default
\ &quot;&quot;
2 / Standard storage class
\ &quot;STANDARD&quot;
3 / Reduced redundancy storage class
\ &quot;REDUCED_REDUNDANCY&quot;
4 / Standard Infrequent Access storage class
\ &quot;STANDARD_IA&quot;
storage_class&gt;
Remote config
--------------------
[wasabi]
env_auth = false
access_key_id = YOURACCESSKEY
secret_access_key = YOURSECRETACCESSKEY
region = us-east-1
endpoint = s3.wasabisys.com
location_constraint =
acl =
server_side_encryption =
storage_class =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>This will leave the config file looking like this.</p>
<pre><code>[wasabi]
type = s3
provider = Wasabi
env_auth = false
access_key_id = YOURACCESSKEY
secret_access_key = YOURSECRETACCESSKEY
region =
endpoint = s3.wasabisys.com
location_constraint =
acl =
server_side_encryption =
storage_class =</code></pre>
<h3 id="alibaba-oss">Alibaba OSS</h3>
<p>Here is an example of making an <a href="https://www.alibabacloud.com/product/oss/">Alibaba Cloud (Aliyun) OSS</a> configuration. First run:</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process.</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; oss
Type of storage to configure.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
[snip]
4 / Amazon S3 Compliant Storage Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)
\ &quot;s3&quot;
[snip]
Storage&gt; s3
Choose your S3 provider.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
1 / Amazon Web Services (AWS) S3
\ &quot;AWS&quot;
2 / Alibaba Cloud Object Storage System (OSS) formerly Aliyun
\ &quot;Alibaba&quot;
3 / Ceph Object Storage
\ &quot;Ceph&quot;
[snip]
provider&gt; Alibaba
Get AWS credentials from runtime (environment variables or EC2/ECS meta data if no env vars).
Only applies if access_key_id and secret_access_key is blank.
Enter a boolean value (true or false). Press Enter for the default (&quot;false&quot;).
Choose a number from below, or type in your own value
1 / Enter AWS credentials in the next step
\ &quot;false&quot;
2 / Get AWS credentials from the environment (env vars or IAM)
\ &quot;true&quot;
env_auth&gt; 1
AWS Access Key ID.
Leave blank for anonymous access or runtime credentials.
Enter a string value. Press Enter for the default (&quot;&quot;).
access_key_id&gt; accesskeyid
AWS Secret Access Key (password)
Leave blank for anonymous access or runtime credentials.
Enter a string value. Press Enter for the default (&quot;&quot;).
secret_access_key&gt; secretaccesskey
Endpoint for OSS API.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
1 / East China 1 (Hangzhou)
\ &quot;oss-cn-hangzhou.aliyuncs.com&quot;
2 / East China 2 (Shanghai)
\ &quot;oss-cn-shanghai.aliyuncs.com&quot;
3 / North China 1 (Qingdao)
\ &quot;oss-cn-qingdao.aliyuncs.com&quot;
[snip]
endpoint&gt; 1
Canned ACL used when creating buckets and storing or copying objects.
Note that this ACL is applied when server side copying objects as S3
doesn&#39;t copy the ACL from the source but rather writes a fresh one.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
1 / Owner gets FULL_CONTROL. No one else has access rights (default).
\ &quot;private&quot;
2 / Owner gets FULL_CONTROL. The AllUsers group gets READ access.
\ &quot;public-read&quot;
/ Owner gets FULL_CONTROL. The AllUsers group gets READ and WRITE access.
[snip]
acl&gt; 1
The storage class to use when storing new objects in OSS.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
1 / Default
\ &quot;&quot;
2 / Standard storage class
\ &quot;STANDARD&quot;
3 / Archive storage mode.
\ &quot;GLACIER&quot;
4 / Infrequent access storage mode.
\ &quot;STANDARD_IA&quot;
storage_class&gt; 1
Edit advanced config? (y/n)
y) Yes
n) No
y/n&gt; n
Remote config
--------------------
[oss]
type = s3
provider = Alibaba
env_auth = false
access_key_id = accesskeyid
secret_access_key = secretaccesskey
endpoint = oss-cn-hangzhou.aliyuncs.com
acl = private
storage_class = Standard
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<h3 id="netease-nos">Netease NOS</h3>
<p>For Netease NOS configure as per the configurator <code>rclone config</code> setting the provider <code>Netease</code>. This will automatically set <code>force_path_style = false</code> which is necessary for it to run properly.</p>
<h2 id="backblaze-b2">Backblaze B2</h2>
<p>B2 is <a href="https://www.backblaze.com/b2/">Backblazes cloud storage system</a>.</p>
<p>Paths are specified as <code>remote:bucket</code> (or <code>remote:</code> for the <code>lsd</code> command.) You may put subdirectories in too, eg <code>remote:bucket/path/to/dir</code>.</p>
<p>Here is an example of making a b2 configuration. First run</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process. To authenticate you will either need your Account ID (a short hex number) and Master Application Key (a long hex number) OR an Application Key, which is the recommended method. See below for further details on generating and using an Application Key.</p>
<pre><code>No remotes found - make a new one
n) New remote
q) Quit config
n/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
7 / Google Drive
\ &quot;drive&quot;
8 / Hubic
\ &quot;hubic&quot;
9 / Local Disk
\ &quot;local&quot;
10 / Microsoft OneDrive
\ &quot;onedrive&quot;
11 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
12 / SSH/SFTP Connection
\ &quot;sftp&quot;
13 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 3
Account ID or Application Key ID
account&gt; 123456789abc
Application Key
key&gt; 0123456789abcdef0123456789abcdef0123456789
Endpoint for the service - leave blank normally.
endpoint&gt;
Remote config
--------------------
[remote]
account = 123456789abc
key = 0123456789abcdef0123456789abcdef0123456789
endpoint =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>This remote is called <code>remote</code> and can now be used like this</p>
<p>See all buckets</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Create a new bucket</p>
<pre><code>rclone mkdir remote:bucket</code></pre>
<p>List the contents of a bucket</p>
<pre><code>rclone ls remote:bucket</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote bucket, deleting any excess files in the bucket.</p>
<pre><code>rclone sync /home/local/directory remote:bucket</code></pre>
<h3 id="application-keys">Application Keys</h3>
<p>B2 supports multiple <a href="https://www.backblaze.com/b2/docs/application_keys.html">Application Keys for different access permission to B2 Buckets</a>.</p>
<p>You can use these with rclone too; you will need to use rclone version 1.43 or later.</p>
<p>Follow Backblazes docs to create an Application Key with the required permission and add the <code>applicationKeyId</code> as the <code>account</code> and the <code>Application Key</code> itself as the <code>key</code>.</p>
<p>Note that you must put the <em>applicationKeyId</em> as the <code>account</code> you cant use the master Account ID. If you try then B2 will return 401 errors.</p>
<h3 id="fast-list-2">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="modified-time-1">Modified time</h3>
<p>The modified time is stored as metadata on the object as <code>X-Bz-Info-src_last_modified_millis</code> as milliseconds since 1970-01-01 in the Backblaze standard. Other tools should be able to use this as a modified time.</p>
<p>Modified times are used in syncing and are fully supported. Note that if a modification time needs to be updated on an object then it will create a new version of the object.</p>
<h3 id="sha1-checksums">SHA1 checksums</h3>
<p>The SHA1 checksums of the files are checked on upload and download and will be used in the syncing process.</p>
<p>Large files (bigger than the limit in <code>--b2-upload-cutoff</code>) which are uploaded in chunks will store their SHA1 on the object as <code>X-Bz-Info-large_file_sha1</code> as recommended by Backblaze.</p>
<p>For a large file to be uploaded with an SHA1 checksum, the source needs to support SHA1 checksums. The local disk supports SHA1 checksums so large file transfers from local disk will have an SHA1. See <a href="/overview/#features">the overview</a> for exactly which remotes support SHA1.</p>
<p>Sources which dont support SHA1, in particular <code>crypt</code> will upload large files without SHA1 checksums. This may be fixed in the future (see <a href="https://github.com/rclone/rclone/issues/1767">#1767</a>).</p>
<p>Files sizes below <code>--b2-upload-cutoff</code> will always have an SHA1 regardless of the source.</p>
<h3 id="transfers">Transfers</h3>
<p>Backblaze recommends that you do lots of transfers simultaneously for maximum speed. In tests from my SSD equipped laptop the optimum setting is about <code>--transfers 32</code> though higher numbers may be used for a slight speed improvement. The optimum number for you may vary depending on your hardware, how big the files are, how much you want to load your computer, etc. The default of <code>--transfers 4</code> is definitely too low for Backblaze B2 though.</p>
<p>Note that uploading big files (bigger than 200 MB by default) will use a 96 MB RAM buffer by default. There can be at most <code>--transfers</code> of these in use at any moment, so this sets the upper limit on the memory used.</p>
<h3 id="versions">Versions</h3>
<p>When rclone uploads a new version of a file it creates a <a href="https://www.backblaze.com/b2/docs/file_versions.html">new version of it</a>. Likewise when you delete a file, the old version will be marked hidden and still be available. Conversely, you may opt in to a “hard delete” of files with the <code>--b2-hard-delete</code> flag which would permanently remove the file instead of hiding it.</p>
<p>Old versions of files, where available, are visible using the <code>--b2-versions</code> flag.</p>
<p><strong>NB</strong> Note that <code>--b2-versions</code> does not work with crypt at the moment <a href="https://github.com/rclone/rclone/issues/1627">#1627</a>. Using <a href="/docs/#backup-dir-dir">backup-dir</a> with rclone is the recommended way of working around this.</p>
<p>If you wish to remove all the old versions then you can use the <code>rclone cleanup remote:bucket</code> command which will delete all the old versions of files, leaving the current ones intact. You can also supply a path and only old versions under that path will be deleted, eg <code>rclone cleanup remote:bucket/path/to/stuff</code>.</p>
<p>Note that <code>cleanup</code> will remove partially uploaded files from the bucket if they are more than a day old.</p>
<p>When you <code>purge</code> a bucket, the current and the old versions will be deleted then the bucket will be deleted.</p>
<p>However <code>delete</code> will cause the current versions of the files to become hidden old versions.</p>
<p>Here is a session showing the listing and retrieval of an old version followed by a <code>cleanup</code> of the old versions.</p>
<p>Show current version and all the versions with <code>--b2-versions</code> flag.</p>
<pre><code>$ rclone -q ls b2:cleanup-test
9 one.txt
$ rclone -q --b2-versions ls b2:cleanup-test
9 one.txt
8 one-v2016-07-04-141032-000.txt
16 one-v2016-07-04-141003-000.txt
15 one-v2016-07-02-155621-000.txt</code></pre>
<p>Retrieve an old version</p>
<pre><code>$ rclone -q --b2-versions copy b2:cleanup-test/one-v2016-07-04-141003-000.txt /tmp
$ ls -l /tmp/one-v2016-07-04-141003-000.txt
-rw-rw-r-- 1 ncw ncw 16 Jul 2 17:46 /tmp/one-v2016-07-04-141003-000.txt</code></pre>
<p>Clean up all the old versions and show that theyve gone.</p>
<pre><code>$ rclone -q cleanup b2:cleanup-test
$ rclone -q ls b2:cleanup-test
9 one.txt
$ rclone -q --b2-versions ls b2:cleanup-test
9 one.txt</code></pre>
<h3 id="data-usage">Data usage</h3>
<p>It is useful to know how many requests are sent to the server in different scenarios.</p>
<p>All copy commands send the following 4 requests:</p>
<pre><code>/b2api/v1/b2_authorize_account
/b2api/v1/b2_create_bucket
/b2api/v1/b2_list_buckets
/b2api/v1/b2_list_file_names</code></pre>
<p>The <code>b2_list_file_names</code> request will be sent once for every 1k files in the remote path, providing the checksum and modification time of the listed files. As of version 1.33 issue <a href="https://github.com/rclone/rclone/issues/818">#818</a> causes extra requests to be sent when using B2 with Crypt. When a copy operation does not require any files to be uploaded, no more requests will be sent.</p>
<p>Uploading files that do not require chunking, will send 2 requests per file upload:</p>
<pre><code>/b2api/v1/b2_get_upload_url
/b2api/v1/b2_upload_file/</code></pre>
<p>Uploading files requiring chunking, will send 2 requests (one each to start and finish the upload) and another 2 requests for each chunk:</p>
<pre><code>/b2api/v1/b2_start_large_file
/b2api/v1/b2_get_upload_part_url
/b2api/v1/b2_upload_part/
/b2api/v1/b2_finish_large_file</code></pre>
<h4 id="versions-1">Versions</h4>
<p>Versions can be viewed with the <code>--b2-versions</code> flag. When it is set rclone will show and act on older versions of files. For example</p>
<p>Listing without <code>--b2-versions</code></p>
<pre><code>$ rclone -q ls b2:cleanup-test
9 one.txt</code></pre>
<p>And with</p>
<pre><code>$ rclone -q --b2-versions ls b2:cleanup-test
9 one.txt
8 one-v2016-07-04-141032-000.txt
16 one-v2016-07-04-141003-000.txt
15 one-v2016-07-02-155621-000.txt</code></pre>
<p>Showing that the current version is unchanged but older versions can be seen. These have the UTC date that they were uploaded to the server to the nearest millisecond appended to them.</p>
<p>Note that when using <code>--b2-versions</code> no file write operations are permitted, so you cant upload files or delete them.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/b2/b2.go then run make backenddocs -->
<h3 id="standard-options-3">Standard Options</h3>
<p>Here are the standard options specific to b2 (Backblaze B2).</p>
<h4 id="b2-account">b2-account</h4>
<p>Account ID or Application Key ID</p>
<ul>
<li>Config: account</li>
<li>Env Var: RCLONE_B2_ACCOUNT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="b2-key">b2-key</h4>
<p>Application Key</p>
<ul>
<li>Config: key</li>
<li>Env Var: RCLONE_B2_KEY</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="b2-hard-delete">b2-hard-delete</h4>
<p>Permanently delete files on remote removal, otherwise hide files.</p>
<ul>
<li>Config: hard_delete</li>
<li>Env Var: RCLONE_B2_HARD_DELETE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h3 id="advanced-options-2">Advanced Options</h3>
<p>Here are the advanced options specific to b2 (Backblaze B2).</p>
<h4 id="b2-endpoint">b2-endpoint</h4>
<p>Endpoint for the service. Leave blank normally.</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_B2_ENDPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="b2-test-mode">b2-test-mode</h4>
<p>A flag string for X-Bz-Test-Mode header for debugging.</p>
<p>This is for debugging purposes only. Setting it to one of the strings below will cause b2 to return specific errors:</p>
<ul>
<li>“fail_some_uploads”</li>
<li>“expire_some_account_authorization_tokens”</li>
<li>“force_cap_exceeded”</li>
</ul>
<p>These will be set in the “X-Bz-Test-Mode” header which is documented in the <a href="https://www.backblaze.com/b2/docs/integration_checklist.html">b2 integrations checklist</a>.</p>
<ul>
<li>Config: test_mode</li>
<li>Env Var: RCLONE_B2_TEST_MODE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="b2-versions">b2-versions</h4>
<p>Include old versions in directory listings. Note that when using this no file write operations are permitted, so you cant upload files or delete them.</p>
<ul>
<li>Config: versions</li>
<li>Env Var: RCLONE_B2_VERSIONS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="b2-upload-cutoff">b2-upload-cutoff</h4>
<p>Cutoff for switching to chunked upload.</p>
<p>Files above this size will be uploaded in chunks of “b2-chunk-size”.</p>
<p>This value should be set no larger than 4.657GiB (== 5GB).</p>
<ul>
<li>Config: upload_cutoff</li>
<li>Env Var: RCLONE_B2_UPLOAD_CUTOFF</li>
<li>Type: SizeSuffix</li>
<li>Default: 200M</li>
</ul>
<h4 id="b2-chunk-size">b2-chunk-size</h4>
<p>Upload chunk size. Must fit in memory.</p>
<p>When uploading large files, chunk the file into this size. Note that these chunks are buffered in memory and there might a maximum of “transfers” chunks in progress at once. 5,000,000 Bytes is the minimum size.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_B2_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 96M</li>
</ul>
<h4 id="b2-disable-checksum">b2-disable-checksum</h4>
<p>Disable checksums for large (&gt; upload cutoff) files</p>
<ul>
<li>Config: disable_checksum</li>
<li>Env Var: RCLONE_B2_DISABLE_CHECKSUM</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="b2-download-url">b2-download-url</h4>
<p>Custom endpoint for downloads.</p>
<p>This is usually set to a Cloudflare CDN URL as Backblaze offers free egress for data downloaded through the Cloudflare network. Leave blank if you want to use the endpoint provided by Backblaze.</p>
<ul>
<li>Config: download_url</li>
<li>Env Var: RCLONE_B2_DOWNLOAD_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="box">Box</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>The initial setup for Box involves getting a token from Box which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Box
\ &quot;box&quot;
5 / Dropbox
\ &quot;dropbox&quot;
6 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
7 / FTP Connection
\ &quot;ftp&quot;
8 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
9 / Google Drive
\ &quot;drive&quot;
10 / Hubic
\ &quot;hubic&quot;
11 / Local Disk
\ &quot;local&quot;
12 / Microsoft OneDrive
\ &quot;onedrive&quot;
13 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
14 / SSH/SFTP Connection
\ &quot;sftp&quot;
15 / Yandex Disk
\ &quot;yandex&quot;
16 / http Connection
\ &quot;http&quot;
Storage&gt; box
Box App Client Id - leave blank normally.
client_id&gt;
Box App Client Secret - leave blank normally.
client_secret&gt;
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
--------------------
[remote]
client_id =
client_secret =
token = {&quot;access_token&quot;:&quot;XXX&quot;,&quot;token_type&quot;:&quot;bearer&quot;,&quot;refresh_token&quot;:&quot;XXX&quot;,&quot;expiry&quot;:&quot;XXX&quot;}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>See the <a href="https://rclone.org/remote_setup/">remote setup docs</a> for how to set it up on a machine with no Internet browser available.</p>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from Box. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your Box</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your Box</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an Box directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="using-rclone-with-an-enterprise-account-with-sso">Using rclone with an Enterprise account with SSO</h3>
<p>If you have an “Enterprise” account type with Box with single sign on (SSO), you need to create a password to use Box with rclone. This can be done at your Enterprise Box account by going to Settings, “Account” Tab, and then set the password in the “Authentication” field.</p>
<p>Once you have done this, you can setup your Enterprise Box account using the same procedure detailed above in the, using the password you have just set.</p>
<h3 id="invalid-refresh-token">Invalid refresh token</h3>
<p>According to the <a href="https://developer.box.com/v2.0/docs/oauth-20#section-6-using-the-access-and-refresh-tokens">box docs</a>:</p>
<blockquote>
<p>Each refresh_token is valid for one use in 60 days.</p>
</blockquote>
<p>This means that if you</p>
<ul>
<li>Dont use the box remote for 60 days</li>
<li>Copy the config file with a box refresh token in and use it in two places</li>
<li>Get an error on a token refresh</li>
</ul>
<p>then rclone will return an error which includes the text <code>Invalid refresh token</code>.</p>
<p>To fix this you will need to use oauth2 again to update the refresh token. You can use the methods in <a href="https://rclone.org/remote_setup/">the remote setup docs</a>, bearing in mind that if you use the copy the config file method, you should not use that remote on the computer you did the authentication on.</p>
<p>Here is how to do it.</p>
<pre><code>$ rclone config
Current remotes:
Name Type
==== ====
remote box
e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q&gt; e
Choose a number from below, or type in an existing value
1 &gt; remote
remote&gt; remote
--------------------
[remote]
type = box
token = {&quot;access_token&quot;:&quot;XXX&quot;,&quot;token_type&quot;:&quot;bearer&quot;,&quot;refresh_token&quot;:&quot;XXX&quot;,&quot;expiry&quot;:&quot;2017-07-08T23:40:08.059167677+01:00&quot;}
--------------------
Edit remote
Value &quot;client_id&quot; = &quot;&quot;
Edit? (y/n)&gt;
y) Yes
n) No
y/n&gt; n
Value &quot;client_secret&quot; = &quot;&quot;
Edit? (y/n)&gt;
y) Yes
n) No
y/n&gt; n
Remote config
Already have a token - refresh?
y) Yes
n) No
y/n&gt; y
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
--------------------
[remote]
type = box
token = {&quot;access_token&quot;:&quot;YYY&quot;,&quot;token_type&quot;:&quot;bearer&quot;,&quot;refresh_token&quot;:&quot;YYY&quot;,&quot;expiry&quot;:&quot;2017-07-23T12:22:29.259137901+01:00&quot;}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<h3 id="modified-time-and-hashes">Modified time and hashes</h3>
<p>Box allows modification times to be set on objects accurate to 1 second. These will be used to detect whether objects need syncing or not.</p>
<p>Box supports SHA1 type hashes, so you can use the <code>--checksum</code> flag.</p>
<h3 id="transfers-1">Transfers</h3>
<p>For files above 50MB rclone will use a chunked transfer. Rclone will upload up to <code>--transfers</code> chunks at the same time (shared among all the multipart uploads). Chunks are buffered in memory and are normally 8MB so increasing <code>--transfers</code> will increase memory use.</p>
<h3 id="deleting-files-1">Deleting files</h3>
<p>Depending on the enterprise settings for your user, the item will either be actually deleted from Box or moved to the trash.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/box/box.go then run make backenddocs -->
<h3 id="standard-options-4">Standard Options</h3>
<p>Here are the standard options specific to box (Box).</p>
<h4 id="box-client-id">box-client-id</h4>
<p>Box App Client Id. Leave blank normally.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_BOX_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="box-client-secret">box-client-secret</h4>
<p>Box App Client Secret Leave blank normally.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_BOX_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-3">Advanced Options</h3>
<p>Here are the advanced options specific to box (Box).</p>
<h4 id="box-upload-cutoff">box-upload-cutoff</h4>
<p>Cutoff for switching to multipart upload (&gt;= 50MB).</p>
<ul>
<li>Config: upload_cutoff</li>
<li>Env Var: RCLONE_BOX_UPLOAD_CUTOFF</li>
<li>Type: SizeSuffix</li>
<li>Default: 50M</li>
</ul>
<h4 id="box-commit-retries">box-commit-retries</h4>
<p>Max number of times to try committing a multipart file.</p>
<ul>
<li>Config: commit_retries</li>
<li>Env Var: RCLONE_BOX_COMMIT_RETRIES</li>
<li>Type: int</li>
<li>Default: 100</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-2">Limitations</h3>
<p>Note that Box is case insensitive so you cant have a file called “Hello.doc” and one called “hello.doc”.</p>
<p>Box file names cant have the <code>\</code> character in. rclone maps this to and from an identical looking unicode equivalent <code></code>.</p>
<p>Box only supports filenames up to 255 characters in length.</p>
<h2 id="cache-beta">Cache (BETA)</h2>
<p>The <code>cache</code> remote wraps another existing remote and stores file structure and its data for long running tasks like <code>rclone mount</code>.</p>
<p>To get started you just need to have an existing remote which can be configured with <code>cache</code>.</p>
<p>Here is an example of how to make a remote called <code>test-cache</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
n/r/c/s/q&gt; n
name&gt; test-cache
Type of storage to configure.
Choose a number from below, or type in your own value
...
5 / Cache a remote
\ &quot;cache&quot;
...
Storage&gt; 5
Remote to cache.
Normally should contain a &#39;:&#39; and a path, eg &quot;myremote:path/to/dir&quot;,
&quot;myremote:bucket&quot; or maybe &quot;myremote:&quot; (not recommended).
remote&gt; local:/test
Optional: The URL of the Plex server
plex_url&gt; http://127.0.0.1:32400
Optional: The username of the Plex user
plex_username&gt; dummyusername
Optional: The password of the Plex user
y) Yes type in my own password
g) Generate random password
n) No leave this optional password blank
y/g/n&gt; y
Enter the password:
password:
Confirm the password:
password:
The size of a chunk. Lower value good for slow connections but can affect seamless reading.
Default: 5M
Choose a number from below, or type in your own value
1 / 1MB
\ &quot;1m&quot;
2 / 5 MB
\ &quot;5M&quot;
3 / 10 MB
\ &quot;10M&quot;
chunk_size&gt; 2
How much time should object info (file size, file hashes etc) be stored in cache. Use a very high value if you don&#39;t plan on changing the source FS from outside the cache.
Accepted units are: &quot;s&quot;, &quot;m&quot;, &quot;h&quot;.
Default: 5m
Choose a number from below, or type in your own value
1 / 1 hour
\ &quot;1h&quot;
2 / 24 hours
\ &quot;24h&quot;
3 / 24 hours
\ &quot;48h&quot;
info_age&gt; 2
The maximum size of stored chunks. When the storage grows beyond this size, the oldest chunks will be deleted.
Default: 10G
Choose a number from below, or type in your own value
1 / 500 MB
\ &quot;500M&quot;
2 / 1 GB
\ &quot;1G&quot;
3 / 10 GB
\ &quot;10G&quot;
chunk_total_size&gt; 3
Remote config
--------------------
[test-cache]
remote = local:/test
plex_url = http://127.0.0.1:32400
plex_username = dummyusername
plex_password = *** ENCRYPTED ***
chunk_size = 5M
info_age = 48h
chunk_total_size = 10G</code></pre>
<p>You can then use it like this,</p>
<p>List directories in top level of your drive</p>
<pre><code>rclone lsd test-cache:</code></pre>
<p>List all the files in your drive</p>
<pre><code>rclone ls test-cache:</code></pre>
<p>To start a cached mount</p>
<pre><code>rclone mount --allow-other test-cache: /var/tmp/test-cache</code></pre>
<h3 id="write-features">Write Features</h3>
<h3 id="offline-uploading">Offline uploading</h3>
<p>In an effort to make writing through cache more reliable, the backend now supports this feature which can be activated by specifying a <code>cache-tmp-upload-path</code>.</p>
<p>A files goes through these states when using this feature:</p>
<ol type="1">
<li>An upload is started (usually by copying a file on the cache remote)</li>
<li>When the copy to the temporary location is complete the file is part of the cached remote and looks and behaves like any other file (reading included)</li>
<li>After <code>cache-tmp-wait-time</code> passes and the file is next in line, <code>rclone move</code> is used to move the file to the cloud provider</li>
<li>Reading the file still works during the upload but most modifications on it will be prohibited</li>
<li>Once the move is complete the file is unlocked for modifications as it becomes as any other regular file</li>
<li>If the file is being read through <code>cache</code> when its actually deleted from the temporary path then <code>cache</code> will simply swap the source to the cloud provider without interrupting the reading (small blip can happen though)</li>
</ol>
<p>Files are uploaded in sequence and only one file is uploaded at a time. Uploads will be stored in a queue and be processed based on the order they were added. The queue and the temporary storage is persistent across restarts but can be cleared on startup with the <code>--cache-db-purge</code> flag.</p>
<h3 id="write-support">Write Support</h3>
<p>Writes are supported through <code>cache</code>. One caveat is that a mounted cache remote does not add any retry or fallback mechanism to the upload operation. This will depend on the implementation of the wrapped remote. Consider using <code>Offline uploading</code> for reliable writes.</p>
<p>One special case is covered with <code>cache-writes</code> which will cache the file data at the same time as the upload when it is enabled making it available from the cache store immediately once the upload is finished.</p>
<h3 id="read-features">Read Features</h3>
<h4 id="multiple-connections">Multiple connections</h4>
<p>To counter the high latency between a local PC where rclone is running and cloud providers, the cache remote can split multiple requests to the cloud provider for smaller file chunks and combines them together locally where they can be available almost immediately before the reader usually needs them.</p>
<p>This is similar to buffering when media files are played online. Rclone will stay around the current marker but always try its best to stay ahead and prepare the data before.</p>
<h4 id="plex-integration">Plex Integration</h4>
<p>There is a direct integration with Plex which allows cache to detect during reading if the file is in playback or not. This helps cache to adapt how it queries the cloud provider depending on what is needed for.</p>
<p>Scans will have a minimum amount of workers (1) while in a confirmed playback cache will deploy the configured number of workers.</p>
<p>This integration opens the doorway to additional performance improvements which will be explored in the near future.</p>
<p><strong>Note:</strong> If Plex options are not configured, <code>cache</code> will function with its configured options without adapting any of its settings.</p>
<p>How to enable? Run <code>rclone config</code> and add all the Plex options (endpoint, username and password) in your remote and it will be automatically enabled.</p>
<p>Affected settings: - <code>cache-workers</code>: <em>Configured value</em> during confirmed playback or <em>1</em> all the other times</p>
<h5 id="certificate-validation">Certificate Validation</h5>
<p>When the Plex server is configured to only accept secure connections, it is possible to use <code>.plex.direct</code> URLs to ensure certificate validation succeeds. These URLs are used by Plex internally to connect to the Plex server securely.</p>
<p>The format for this URLs is the following:</p>
<p>https://ip-with-dots-replaced.server-hash.plex.direct:32400/</p>
<p>The <code>ip-with-dots-replaced</code> part can be any IPv4 address, where the dots have been replaced with dashes, e.g. <code>127.0.0.1</code> becomes <code>127-0-0-1</code>.</p>
<p>To get the <code>server-hash</code> part, the easiest way is to visit</p>
<p>https://plex.tv/api/resources?includeHttps=1&amp;X-Plex-Token=your-plex-token</p>
<p>This page will list all the available Plex servers for your account with at least one <code>.plex.direct</code> link for each. Copy one URL and replace the IP address with the desired address. This can be used as the <code>plex_url</code> value.</p>
<h3 id="known-issues">Known issues</h3>
<h4 id="mount-and-dir-cache-time">Mount and dir-cache-time</h4>
<p>dir-cache-time controls the first layer of directory caching which works at the mount layer. Being an independent caching mechanism from the <code>cache</code> backend, it will manage its own entries based on the configured time.</p>
<p>To avoid getting in a scenario where dir cache has obsolete data and cache would have the correct one, try to set <code>--dir-cache-time</code> to a lower time than <code>--cache-info-age</code>. Default values are already configured in this way.</p>
<h4 id="windows-support---experimental">Windows support - Experimental</h4>
<p>There are a couple of issues with Windows <code>mount</code> functionality that still require some investigations. It should be considered as experimental thus far as fixes come in for this OS.</p>
<p>Most of the issues seem to be related to the difference between filesystems on Linux flavors and Windows as cache is heavily dependant on them.</p>
<p>Any reports or feedback on how cache behaves on this OS is greatly appreciated.</p>
<ul>
<li>https://github.com/rclone/rclone/issues/1935</li>
<li>https://github.com/rclone/rclone/issues/1907</li>
<li>https://github.com/rclone/rclone/issues/1834</li>
</ul>
<h4 id="risk-of-throttling">Risk of throttling</h4>
<p>Future iterations of the cache backend will make use of the pooling functionality of the cloud provider to synchronize and at the same time make writing through it more tolerant to failures.</p>
<p>There are a couple of enhancements in track to add these but in the meantime there is a valid concern that the expiring cache listings can lead to cloud provider throttles or bans due to repeated queries on it for very large mounts.</p>
<p>Some recommendations: - dont use a very small interval for entry informations (<code>--cache-info-age</code>) - while writes arent yet optimised, you can still write through <code>cache</code> which gives you the advantage of adding the file in the cache at the same time if configured to do so.</p>
<p>Future enhancements:</p>
<ul>
<li>https://github.com/rclone/rclone/issues/1937</li>
<li>https://github.com/rclone/rclone/issues/1936</li>
</ul>
<h4 id="cache-and-crypt">cache and crypt</h4>
<p>One common scenario is to keep your data encrypted in the cloud provider using the <code>crypt</code> remote. <code>crypt</code> uses a similar technique to wrap around an existing remote and handles this translation in a seamless way.</p>
<p>There is an issue with wrapping the remotes in this order: <span style="color:red"><strong>cloud remote</strong> -&gt; <strong>crypt</strong> -&gt; <strong>cache</strong></span></p>
<p>During testing, I experienced a lot of bans with the remotes in this order. I suspect it might be related to how crypt opens files on the cloud provider which makes it think were downloading the full file instead of small chunks. Organizing the remotes in this order yields better results: <span style="color:green"><strong>cloud remote</strong> -&gt; <strong>cache</strong> -&gt; <strong>crypt</strong></span></p>
<h4 id="absolute-remote-paths">absolute remote paths</h4>
<p><code>cache</code> can not differentiate between relative and absolute paths for the wrapped remote. Any path given in the <code>remote</code> config setting and on the command line will be passed to the wrapped remote as is, but for storing the chunks on disk the path will be made relative by removing any leading <code>/</code> character.</p>
<p>This behavior is irrelevant for most backend types, but there are backends where a leading <code>/</code> changes the effective directory, e.g. in the <code>sftp</code> backend paths starting with a <code>/</code> are relative to the root of the SSH server and paths without are relative to the user home directory. As a result <code>sftp:bin</code> and <code>sftp:/bin</code> will share the same cache folder, even if they represent a different directory on the SSH server.</p>
<h3 id="cache-and-remote-control-rc">Cache and Remote Control (rc)</h3>
<p>Cache supports the new <code>--rc</code> mode in rclone and can be remote controlled through the following end points: By default, the listener is disabled if you do not add the flag.</p>
<h3 id="rc-cacheexpire">rc cache/expire</h3>
<p>Purge a remote from the cache backend. Supports either a directory or a file. It supports both encrypted and unencrypted file names if cache is wrapped by crypt.</p>
<p>Params: - <strong>remote</strong> = path to remote <strong>(required)</strong> - <strong>withData</strong> = true/false to delete cached data (chunks) as well <em>(optional, false by default)</em></p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/cache/cache.go then run make backenddocs -->
<h3 id="standard-options-5">Standard Options</h3>
<p>Here are the standard options specific to cache (Cache a remote).</p>
<h4 id="cache-remote">cache-remote</h4>
<p>Remote to cache. Normally should contain a : and a path, eg “myremote:path/to/dir”, “myremote:bucket” or maybe “myremote:” (not recommended).</p>
<ul>
<li>Config: remote</li>
<li>Env Var: RCLONE_CACHE_REMOTE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="cache-plex-url">cache-plex-url</h4>
<p>The URL of the Plex server</p>
<ul>
<li>Config: plex_url</li>
<li>Env Var: RCLONE_CACHE_PLEX_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="cache-plex-username">cache-plex-username</h4>
<p>The username of the Plex user</p>
<ul>
<li>Config: plex_username</li>
<li>Env Var: RCLONE_CACHE_PLEX_USERNAME</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="cache-plex-password">cache-plex-password</h4>
<p>The password of the Plex user</p>
<ul>
<li>Config: plex_password</li>
<li>Env Var: RCLONE_CACHE_PLEX_PASSWORD</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="cache-chunk-size">cache-chunk-size</h4>
<p>The size of a chunk (partial file data).</p>
<p>Use lower numbers for slower connections. If the chunk size is changed, any downloaded chunks will be invalid and cache-chunk-path will need to be cleared or unexpected EOF errors will occur.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_CACHE_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 5M</li>
<li>Examples:
<ul>
<li>“1m”
<ul>
<li>1MB</li>
</ul></li>
<li>“5M”
<ul>
<li>5 MB</li>
</ul></li>
<li>“10M”
<ul>
<li>10 MB</li>
</ul></li>
</ul></li>
</ul>
<h4 id="cache-info-age">cache-info-age</h4>
<p>How long to cache file structure information (directory listings, file size, times etc). If all write operations are done through the cache then you can safely make this value very large as the cache store will also be updated in real time.</p>
<ul>
<li>Config: info_age</li>
<li>Env Var: RCLONE_CACHE_INFO_AGE</li>
<li>Type: Duration</li>
<li>Default: 6h0m0s</li>
<li>Examples:
<ul>
<li>“1h”
<ul>
<li>1 hour</li>
</ul></li>
<li>“24h”
<ul>
<li>24 hours</li>
</ul></li>
<li>“48h”
<ul>
<li>48 hours</li>
</ul></li>
</ul></li>
</ul>
<h4 id="cache-chunk-total-size">cache-chunk-total-size</h4>
<p>The total size that the chunks can take up on the local disk.</p>
<p>If the cache exceeds this value then it will start to delete the oldest chunks until it goes under this value.</p>
<ul>
<li>Config: chunk_total_size</li>
<li>Env Var: RCLONE_CACHE_CHUNK_TOTAL_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 10G</li>
<li>Examples:
<ul>
<li>“500M”
<ul>
<li>500 MB</li>
</ul></li>
<li>“1G”
<ul>
<li>1 GB</li>
</ul></li>
<li>“10G”
<ul>
<li>10 GB</li>
</ul></li>
</ul></li>
</ul>
<h3 id="advanced-options-4">Advanced Options</h3>
<p>Here are the advanced options specific to cache (Cache a remote).</p>
<h4 id="cache-plex-token">cache-plex-token</h4>
<p>The plex token for authentication - auto set normally</p>
<ul>
<li>Config: plex_token</li>
<li>Env Var: RCLONE_CACHE_PLEX_TOKEN</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="cache-plex-insecure">cache-plex-insecure</h4>
<p>Skip all certificate verifications when connecting to the Plex server</p>
<ul>
<li>Config: plex_insecure</li>
<li>Env Var: RCLONE_CACHE_PLEX_INSECURE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="cache-db-path">cache-db-path</h4>
<p>Directory to store file structure metadata DB. The remote name is used as the DB file name.</p>
<ul>
<li>Config: db_path</li>
<li>Env Var: RCLONE_CACHE_DB_PATH</li>
<li>Type: string</li>
<li>Default: “$HOME/.cache/rclone/cache-backend”</li>
</ul>
<h4 id="cache-chunk-path">cache-chunk-path</h4>
<p>Directory to cache chunk files.</p>
<p>Path to where partial file data (chunks) are stored locally. The remote name is appended to the final path.</p>
<p>This config follows the “cache-db-path”. If you specify a custom location for “cache-db-path” and dont specify one for “cache-chunk-path” then “cache-chunk-path” will use the same path as “cache-db-path”.</p>
<ul>
<li>Config: chunk_path</li>
<li>Env Var: RCLONE_CACHE_CHUNK_PATH</li>
<li>Type: string</li>
<li>Default: “$HOME/.cache/rclone/cache-backend”</li>
</ul>
<h4 id="cache-db-purge">cache-db-purge</h4>
<p>Clear all the cached data for this remote on start.</p>
<ul>
<li>Config: db_purge</li>
<li>Env Var: RCLONE_CACHE_DB_PURGE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="cache-chunk-clean-interval">cache-chunk-clean-interval</h4>
<p>How often should the cache perform cleanups of the chunk storage. The default value should be ok for most people. If you find that the cache goes over “cache-chunk-total-size” too often then try to lower this value to force it to perform cleanups more often.</p>
<ul>
<li>Config: chunk_clean_interval</li>
<li>Env Var: RCLONE_CACHE_CHUNK_CLEAN_INTERVAL</li>
<li>Type: Duration</li>
<li>Default: 1m0s</li>
</ul>
<h4 id="cache-read-retries">cache-read-retries</h4>
<p>How many times to retry a read from a cache storage.</p>
<p>Since reading from a cache stream is independent from downloading file data, readers can get to a point where theres no more data in the cache. Most of the times this can indicate a connectivity issue if cache isnt able to provide file data anymore.</p>
<p>For really slow connections, increase this to a point where the stream is able to provide data but your experience will be very stuttering.</p>
<ul>
<li>Config: read_retries</li>
<li>Env Var: RCLONE_CACHE_READ_RETRIES</li>
<li>Type: int</li>
<li>Default: 10</li>
</ul>
<h4 id="cache-workers">cache-workers</h4>
<p>How many workers should run in parallel to download chunks.</p>
<p>Higher values will mean more parallel processing (better CPU needed) and more concurrent requests on the cloud provider. This impacts several aspects like the cloud provider API limits, more stress on the hardware that rclone runs on but it also means that streams will be more fluid and data will be available much more faster to readers.</p>
<p><strong>Note</strong>: If the optional Plex integration is enabled then this setting will adapt to the type of reading performed and the value specified here will be used as a maximum number of workers to use.</p>
<ul>
<li>Config: workers</li>
<li>Env Var: RCLONE_CACHE_WORKERS</li>
<li>Type: int</li>
<li>Default: 4</li>
</ul>
<h4 id="cache-chunk-no-memory">cache-chunk-no-memory</h4>
<p>Disable the in-memory cache for storing chunks during streaming.</p>
<p>By default, cache will keep file data during streaming in RAM as well to provide it to readers as fast as possible.</p>
<p>This transient data is evicted as soon as it is read and the number of chunks stored doesnt exceed the number of workers. However, depending on other settings like “cache-chunk-size” and “cache-workers” this footprint can increase if there are parallel streams too (multiple files being read at the same time).</p>
<p>If the hardware permits it, use this feature to provide an overall better performance during streaming but it can also be disabled if RAM is not available on the local machine.</p>
<ul>
<li>Config: chunk_no_memory</li>
<li>Env Var: RCLONE_CACHE_CHUNK_NO_MEMORY</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="cache-rps">cache-rps</h4>
<p>Limits the number of requests per second to the source FS (-1 to disable)</p>
<p>This setting places a hard limit on the number of requests per second that cache will be doing to the cloud provider remote and try to respect that value by setting waits between reads.</p>
<p>If you find that youre getting banned or limited on the cloud provider through cache and know that a smaller number of requests per second will allow you to work with it then you can use this setting for that.</p>
<p>A good balance of all the other settings should make this setting useless but it is available to set for more special cases.</p>
<p><strong>NOTE</strong>: This will limit the number of requests during streams but other API calls to the cloud provider like directory listings will still pass.</p>
<ul>
<li>Config: rps</li>
<li>Env Var: RCLONE_CACHE_RPS</li>
<li>Type: int</li>
<li>Default: -1</li>
</ul>
<h4 id="cache-writes">cache-writes</h4>
<p>Cache file data on writes through the FS</p>
<p>If you need to read files immediately after you upload them through cache you can enable this flag to have their data stored in the cache store at the same time during upload.</p>
<ul>
<li>Config: writes</li>
<li>Env Var: RCLONE_CACHE_WRITES</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="cache-tmp-upload-path">cache-tmp-upload-path</h4>
<p>Directory to keep temporary files until they are uploaded.</p>
<p>This is the path where cache will use as a temporary storage for new files that need to be uploaded to the cloud provider.</p>
<p>Specifying a value will enable this feature. Without it, it is completely disabled and files will be uploaded directly to the cloud provider</p>
<ul>
<li>Config: tmp_upload_path</li>
<li>Env Var: RCLONE_CACHE_TMP_UPLOAD_PATH</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="cache-tmp-wait-time">cache-tmp-wait-time</h4>
<p>How long should files be stored in local cache before being uploaded</p>
<p>This is the duration that a file must wait in the temporary location <em>cache-tmp-upload-path</em> before it is selected for upload.</p>
<p>Note that only one file is uploaded at a time and it can take longer to start the upload if a queue formed for this purpose.</p>
<ul>
<li>Config: tmp_wait_time</li>
<li>Env Var: RCLONE_CACHE_TMP_WAIT_TIME</li>
<li>Type: Duration</li>
<li>Default: 15s</li>
</ul>
<h4 id="cache-db-wait-time">cache-db-wait-time</h4>
<p>How long to wait for the DB to be available - 0 is unlimited</p>
<p>Only one process can have the DB open at any one time, so rclone waits for this duration for the DB to become available before it gives an error.</p>
<p>If you set it to 0 then it will wait forever.</p>
<ul>
<li>Config: db_wait_time</li>
<li>Env Var: RCLONE_CACHE_DB_WAIT_TIME</li>
<li>Type: Duration</li>
<li>Default: 1s</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="crypt">Crypt</h2>
<p>The <code>crypt</code> remote encrypts and decrypts another remote.</p>
<p>To use it first set up the underlying remote following the config instructions for that remote. You can also use a local pathname instead of a remote which will encrypt and decrypt from that directory which might be useful for encrypting onto a USB stick for example.</p>
<p>First check your chosen remote is working - well call it <code>remote:path</code> in these docs. Note that anything inside <code>remote:path</code> will be encrypted and anything outside wont. This means that if you are using a bucket based remote (eg S3, B2, swift) then you should probably put the bucket in the remote <code>s3:bucket</code>. If you just use <code>s3:</code> then rclone will make encrypted bucket names too (if using file name encryption) which may or may not be what you want.</p>
<p>Now configure <code>crypt</code> using <code>rclone config</code>. We will call this one <code>secret</code> to differentiate it from the <code>remote</code>.</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; secret
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
7 / Google Drive
\ &quot;drive&quot;
8 / Hubic
\ &quot;hubic&quot;
9 / Local Disk
\ &quot;local&quot;
10 / Microsoft OneDrive
\ &quot;onedrive&quot;
11 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
12 / SSH/SFTP Connection
\ &quot;sftp&quot;
13 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 5
Remote to encrypt/decrypt.
Normally should contain a &#39;:&#39; and a path, eg &quot;myremote:path/to/dir&quot;,
&quot;myremote:bucket&quot; or maybe &quot;myremote:&quot; (not recommended).
remote&gt; remote:path
How to encrypt the filenames.
Choose a number from below, or type in your own value
1 / Don&#39;t encrypt the file names. Adds a &quot;.bin&quot; extension only.
\ &quot;off&quot;
2 / Encrypt the filenames see the docs for the details.
\ &quot;standard&quot;
3 / Very simple filename obfuscation.
\ &quot;obfuscate&quot;
filename_encryption&gt; 2
Option to either encrypt directory names or leave them intact.
Choose a number from below, or type in your own value
1 / Encrypt directory names.
\ &quot;true&quot;
2 / Don&#39;t encrypt directory names, leave them intact.
\ &quot;false&quot;
filename_encryption&gt; 1
Password or pass phrase for encryption.
y) Yes type in my own password
g) Generate random password
y/g&gt; y
Enter the password:
password:
Confirm the password:
password:
Password or pass phrase for salt. Optional but recommended.
Should be different to the previous password.
y) Yes type in my own password
g) Generate random password
n) No leave this optional password blank
y/g/n&gt; g
Password strength in bits.
64 is just about memorable
128 is secure
1024 is the maximum
Bits&gt; 128
Your password is: JAsJvRcgR-_veXNfy_sGmQ
Use this password?
y) Yes
n) No
y/n&gt; y
Remote config
--------------------
[secret]
remote = remote:path
filename_encryption = standard
password = *** ENCRYPTED ***
password2 = *** ENCRYPTED ***
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p><strong>Important</strong> The password is stored in the config file is lightly obscured so it isnt immediately obvious what it is. It is in no way secure unless you use config file encryption.</p>
<p>A long passphrase is recommended, or you can use a random one. Note that if you reconfigure rclone with the same passwords/passphrases elsewhere it will be compatible - all the secrets used are derived from those two passwords/passphrases.</p>
<p>Note that rclone does not encrypt</p>
<ul>
<li>file length - this can be calcuated within 16 bytes</li>
<li>modification time - used for syncing</li>
</ul>
<h2 id="specifying-the-remote">Specifying the remote</h2>
<p>In normal use, make sure the remote has a <code>:</code> in. If you specify the remote without a <code>:</code> then rclone will use a local directory of that name. So if you use a remote of <code>/path/to/secret/files</code> then rclone will encrypt stuff to that directory. If you use a remote of <code>name</code> then rclone will put files in a directory called <code>name</code> in the current directory.</p>
<p>If you specify the remote as <code>remote:path/to/dir</code> then rclone will store encrypted files in <code>path/to/dir</code> on the remote. If you are using file name encryption, then when you save files to <code>secret:subdir/subfile</code> this will store them in the unencrypted path <code>path/to/dir</code> but the <code>subdir/subpath</code> bit will be encrypted.</p>
<p>Note that unless you want encrypted bucket names (which are difficult to manage because you wont know what directory they represent in web interfaces etc), you should probably specify a bucket, eg <code>remote:secretbucket</code> when using bucket based remotes such as S3, Swift, Hubic, B2, GCS.</p>
<h2 id="example">Example</h2>
<p>To test I made a little directory of files using “standard” file name encryption.</p>
<pre><code>plaintext/
├── file0.txt
├── file1.txt
└── subdir
├── file2.txt
├── file3.txt
└── subsubdir
└── file4.txt</code></pre>
<p>Copy these to the remote and list them back</p>
<pre><code>$ rclone -q copy plaintext secret:
$ rclone -q ls secret:
7 file1.txt
6 file0.txt
8 subdir/file2.txt
10 subdir/subsubdir/file4.txt
9 subdir/file3.txt</code></pre>
<p>Now see what that looked like when encrypted</p>
<pre><code>$ rclone -q ls remote:path
55 hagjclgavj2mbiqm6u6cnjjqcg
54 v05749mltvv1tf4onltun46gls
57 86vhrsv86mpbtd3a0akjuqslj8/dlj7fkq4kdq72emafg7a7s41uo
58 86vhrsv86mpbtd3a0akjuqslj8/7uu829995du6o42n32otfhjqp4/b9pausrfansjth5ob3jkdqd4lc
56 86vhrsv86mpbtd3a0akjuqslj8/8njh1sk437gttmep3p70g81aps</code></pre>
<p>Note that this retains the directory structure which means you can do this</p>
<pre><code>$ rclone -q ls secret:subdir
8 file2.txt
9 file3.txt
10 subsubdir/file4.txt</code></pre>
<p>If dont use file name encryption then the remote will look like this - note the <code>.bin</code> extensions added to prevent the cloud provider attempting to interpret the data.</p>
<pre><code>$ rclone -q ls remote:path
54 file0.txt.bin
57 subdir/file3.txt.bin
56 subdir/file2.txt.bin
58 subdir/subsubdir/file4.txt.bin
55 file1.txt.bin</code></pre>
<h3 id="file-name-encryption-modes">File name encryption modes</h3>
<p>Here are some of the features of the file name encryption modes</p>
<p>Off</p>
<ul>
<li>doesnt hide file names or directory structure</li>
<li>allows for longer file names (~246 characters)</li>
<li>can use sub paths and copy single files</li>
</ul>
<p>Standard</p>
<ul>
<li>file names encrypted</li>
<li>file names cant be as long (~143 characters)</li>
<li>can use sub paths and copy single files</li>
<li>directory structure visible</li>
<li>identical files names will have identical uploaded names</li>
<li>can use shortcuts to shorten the directory recursion</li>
</ul>
<p>Obfuscation</p>
<p>This is a simple “rotate” of the filename, with each file having a rot distance based on the filename. We store the distance at the beginning of the filename. So a file called “hello” may become “53.jgnnq”</p>
<p>This is not a strong encryption of filenames, but it may stop automated scanning tools from picking up on filename patterns. As such its an intermediate between “off” and “standard”. The advantage is that it allows for longer path segment names.</p>
<p>There is a possibility with some unicode based filenames that the obfuscation is weak and may map lower case characters to upper case equivalents. You can not rely on this for strong protection.</p>
<ul>
<li>file names very lightly obfuscated</li>
<li>file names can be longer than standard encryption</li>
<li>can use sub paths and copy single files</li>
<li>directory structure visible</li>
<li>identical files names will have identical uploaded names</li>
</ul>
<p>Cloud storage systems have various limits on file name length and total path length which you are more likely to hit using “Standard” file name encryption. If you keep your file names to below 156 characters in length then you should be OK on all providers.</p>
<p>There may be an even more secure file name encryption mode in the future which will address the long file name problem.</p>
<h3 id="directory-name-encryption">Directory name encryption</h3>
<p>Crypt offers the option of encrypting dir names or leaving them intact. There are two options:</p>
<p>True</p>
<p>Encrypts the whole file path including directory names Example: <code>1/12/123.txt</code> is encrypted to <code>p0e52nreeaj0a5ea7s64m4j72s/l42g6771hnv3an9cgc8cr2n1ng/qgm4avr35m5loi1th53ato71v0</code></p>
<p>False</p>
<p>Only encrypts file names, skips directory names Example: <code>1/12/123.txt</code> is encrypted to <code>1/12/qgm4avr35m5loi1th53ato71v0</code></p>
<h3 id="modified-time-and-hashes-1">Modified time and hashes</h3>
<p>Crypt stores modification times using the underlying remote so support depends on that.</p>
<p>Hashes are not stored for crypt. However the data integrity is protected by an extremely strong crypto authenticator.</p>
<p>Note that you should use the <code>rclone cryptcheck</code> command to check the integrity of a crypted remote instead of <code>rclone check</code> which cant check the checksums properly.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/crypt/crypt.go then run make backenddocs -->
<h3 id="standard-options-6">Standard Options</h3>
<p>Here are the standard options specific to crypt (Encrypt/Decrypt a remote).</p>
<h4 id="crypt-remote">crypt-remote</h4>
<p>Remote to encrypt/decrypt. Normally should contain a : and a path, eg “myremote:path/to/dir”, “myremote:bucket” or maybe “myremote:” (not recommended).</p>
<ul>
<li>Config: remote</li>
<li>Env Var: RCLONE_CRYPT_REMOTE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="crypt-filename-encryption">crypt-filename-encryption</h4>
<p>How to encrypt the filenames.</p>
<ul>
<li>Config: filename_encryption</li>
<li>Env Var: RCLONE_CRYPT_FILENAME_ENCRYPTION</li>
<li>Type: string</li>
<li>Default: “standard”</li>
<li>Examples:
<ul>
<li>“off”
<ul>
<li>Dont encrypt the file names. Adds a “.bin” extension only.</li>
</ul></li>
<li>“standard”
<ul>
<li>Encrypt the filenames see the docs for the details.</li>
</ul></li>
<li>“obfuscate”
<ul>
<li>Very simple filename obfuscation.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="crypt-directory-name-encryption">crypt-directory-name-encryption</h4>
<p>Option to either encrypt directory names or leave them intact.</p>
<ul>
<li>Config: directory_name_encryption</li>
<li>Env Var: RCLONE_CRYPT_DIRECTORY_NAME_ENCRYPTION</li>
<li>Type: bool</li>
<li>Default: true</li>
<li>Examples:
<ul>
<li>“true”
<ul>
<li>Encrypt directory names.</li>
</ul></li>
<li>“false”
<ul>
<li>Dont encrypt directory names, leave them intact.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="crypt-password">crypt-password</h4>
<p>Password or pass phrase for encryption.</p>
<ul>
<li>Config: password</li>
<li>Env Var: RCLONE_CRYPT_PASSWORD</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="crypt-password2">crypt-password2</h4>
<p>Password or pass phrase for salt. Optional but recommended. Should be different to the previous password.</p>
<ul>
<li>Config: password2</li>
<li>Env Var: RCLONE_CRYPT_PASSWORD2</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-5">Advanced Options</h3>
<p>Here are the advanced options specific to crypt (Encrypt/Decrypt a remote).</p>
<h4 id="crypt-show-mapping">crypt-show-mapping</h4>
<p>For all files listed show how the names encrypt.</p>
<p>If this flag is set then for each file that the remote is asked to list, it will log (at level INFO) a line stating the decrypted file name and the encrypted file name.</p>
<p>This is so you can work out which encrypted names are which decrypted names just in case you need to do something with the encrypted file names, or for debugging purposes.</p>
<ul>
<li>Config: show_mapping</li>
<li>Env Var: RCLONE_CRYPT_SHOW_MAPPING</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="backing-up-a-crypted-remote">Backing up a crypted remote</h2>
<p>If you wish to backup a crypted remote, it it recommended that you use <code>rclone sync</code> on the encrypted files, and make sure the passwords are the same in the new encrypted remote.</p>
<p>This will have the following advantages</p>
<ul>
<li><code>rclone sync</code> will check the checksums while copying</li>
<li>you can use <code>rclone check</code> between the encrypted remotes</li>
<li>you dont decrypt and encrypt unnecessarily</li>
</ul>
<p>For example, lets say you have your original remote at <code>remote:</code> with the encrypted version at <code>eremote:</code> with path <code>remote:crypt</code>. You would then set up the new remote <code>remote2:</code> and then the encrypted version <code>eremote2:</code> with path <code>remote2:crypt</code> using the same passwords as <code>eremote:</code>.</p>
<p>To sync the two remotes you would do</p>
<pre><code>rclone sync remote:crypt remote2:crypt</code></pre>
<p>And to check the integrity you would do</p>
<pre><code>rclone check remote:crypt remote2:crypt</code></pre>
<h2 id="file-formats">File formats</h2>
<h3 id="file-encryption">File encryption</h3>
<p>Files are encrypted 1:1 source file to destination object. The file has a header and is divided into chunks.</p>
<h4 id="header">Header</h4>
<ul>
<li>8 bytes magic string <code>RCLONE\x00\x00</code></li>
<li>24 bytes Nonce (IV)</li>
</ul>
<p>The initial nonce is generated from the operating systems crypto strong random number generator. The nonce is incremented for each chunk read making sure each nonce is unique for each block written. The chance of a nonce being re-used is minuscule. If you wrote an exabyte of data (10¹⁸ bytes) you would have a probability of approximately 2×10⁻³² of re-using a nonce.</p>
<h4 id="chunk">Chunk</h4>
<p>Each chunk will contain 64kB of data, except for the last one which may have less data. The data chunk is in standard NACL secretbox format. Secretbox uses XSalsa20 and Poly1305 to encrypt and authenticate messages.</p>
<p>Each chunk contains:</p>
<ul>
<li>16 Bytes of Poly1305 authenticator</li>
<li>1 - 65536 bytes XSalsa20 encrypted data</li>
</ul>
<p>64k chunk size was chosen as the best performing chunk size (the authenticator takes too much time below this and the performance drops off due to cache effects above this). Note that these chunks are buffered in memory so they cant be too big.</p>
<p>This uses a 32 byte (256 bit key) key derived from the user password.</p>
<h4 id="examples">Examples</h4>
<p>1 byte file will encrypt to</p>
<ul>
<li>32 bytes header</li>
<li>17 bytes data chunk</li>
</ul>
<p>49 bytes total</p>
<p>1MB (1048576 bytes) file will encrypt to</p>
<ul>
<li>32 bytes header</li>
<li>16 chunks of 65568 bytes</li>
</ul>
<p>1049120 bytes total (a 0.05% overhead). This is the overhead for big files.</p>
<h3 id="name-encryption">Name encryption</h3>
<p>File names are encrypted segment by segment - the path is broken up into <code>/</code> separated strings and these are encrypted individually.</p>
<p>File segments are padded using using PKCS#7 to a multiple of 16 bytes before encryption.</p>
<p>They are then encrypted with EME using AES with 256 bit key. EME (ECB-Mix-ECB) is a wide-block encryption mode presented in the 2003 paper “A Parallelizable Enciphering Mode” by Halevi and Rogaway.</p>
<p>This makes for deterministic encryption which is what we want - the same filename must encrypt to the same thing otherwise we cant find it on the cloud storage system.</p>
<p>This means that</p>
<ul>
<li>filenames with the same name will encrypt the same</li>
<li>filenames which start the same wont have a common prefix</li>
</ul>
<p>This uses a 32 byte key (256 bits) and a 16 byte (128 bits) IV both of which are derived from the user password.</p>
<p>After encryption they are written out using a modified version of standard <code>base32</code> encoding as described in RFC4648. The standard encoding is modified in two ways:</p>
<ul>
<li>it becomes lower case (no-one likes upper case filenames!)</li>
<li>we strip the padding character <code>=</code></li>
</ul>
<p><code>base32</code> is used rather than the more efficient <code>base64</code> so rclone can be used on case insensitive remotes (eg Windows, Amazon Drive).</p>
<h3 id="key-derivation">Key derivation</h3>
<p>Rclone uses <code>scrypt</code> with parameters <code>N=16384, r=8, p=1</code> with an optional user supplied salt (password2) to derive the 32+32+16 = 80 bytes of key material required. If the user doesnt supply a salt then rclone uses an internal one.</p>
<p><code>scrypt</code> makes it impractical to mount a dictionary attack on rclone encrypted data. For full protection against this you should always use a salt.</p>
<h2 id="dropbox">Dropbox</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Dropbox paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>The initial setup for dropbox involves getting a token from Dropbox which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>n) New remote
d) Delete remote
q) Quit config
e/n/d/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
7 / Google Drive
\ &quot;drive&quot;
8 / Hubic
\ &quot;hubic&quot;
9 / Local Disk
\ &quot;local&quot;
10 / Microsoft OneDrive
\ &quot;onedrive&quot;
11 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
12 / SSH/SFTP Connection
\ &quot;sftp&quot;
13 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 4
Dropbox App Key - leave blank normally.
app_key&gt;
Dropbox App Secret - leave blank normally.
app_secret&gt;
Remote config
Please visit:
https://www.dropbox.com/1/oauth2/authorize?client_id=XXXXXXXXXXXXXXX&amp;response_type=code
Enter the code: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_XXXXXXXXXX
--------------------
[remote]
app_key =
app_secret =
token = XXXXXXXXXXXXXXXXXXXXXXXXXXXXX_XXXX_XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>You can then use it like this,</p>
<p>List directories in top level of your dropbox</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your dropbox</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to a dropbox directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="dropbox-for-business">Dropbox for business</h3>
<p>Rclone supports Dropbox for business and Team Folders.</p>
<p>When using Dropbox for business <code>remote:</code> and <code>remote:path/to/file</code> will refer to your personal folder.</p>
<p>If you wish to see Team Folders you must use a leading <code>/</code> in the path, so <code>rclone lsd remote:/</code> will refer to the root and show you all Team Folders and your User Folder.</p>
<p>You can then use team folders like this <code>remote:/TeamFolder</code> and <code>remote:/TeamFolder/path/to/file</code>.</p>
<p>A leading <code>/</code> for a Dropbox personal account will do nothing, but it will take an extra HTTP transaction so it should be avoided.</p>
<h3 id="modified-time-and-hashes-2">Modified time and Hashes</h3>
<p>Dropbox supports modified times, but the only way to set a modification time is to re-upload the file.</p>
<p>This means that if you uploaded your data with an older version of rclone which didnt support the v2 API and modified times, rclone will decide to upload all your old data to fix the modification times. If you dont want this to happen use <code>--size-only</code> or <code>--checksum</code> flag to stop it.</p>
<p>Dropbox supports <a href="https://www.dropbox.com/developers/reference/content-hash">its own hash type</a> which is checked for all transfers.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/dropbox/dropbox.go then run make backenddocs -->
<h3 id="standard-options-7">Standard Options</h3>
<p>Here are the standard options specific to dropbox (Dropbox).</p>
<h4 id="dropbox-client-id">dropbox-client-id</h4>
<p>Dropbox App Client Id Leave blank normally.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_DROPBOX_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="dropbox-client-secret">dropbox-client-secret</h4>
<p>Dropbox App Client Secret Leave blank normally.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_DROPBOX_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-6">Advanced Options</h3>
<p>Here are the advanced options specific to dropbox (Dropbox).</p>
<h4 id="dropbox-chunk-size">dropbox-chunk-size</h4>
<p>Upload chunk size. (&lt; 150M).</p>
<p>Any files larger than this will be uploaded in chunks of this size.</p>
<p>Note that chunks are buffered in memory (one at a time) so rclone can deal with retries. Setting this larger will increase the speed slightly (at most 10% for 128MB in tests) at the cost of using more memory. It can be set smaller if you are tight on memory.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_DROPBOX_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 48M</li>
</ul>
<h4 id="dropbox-impersonate">dropbox-impersonate</h4>
<p>Impersonate this user when using a business account.</p>
<ul>
<li>Config: impersonate</li>
<li>Env Var: RCLONE_DROPBOX_IMPERSONATE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-3">Limitations</h3>
<p>Note that Dropbox is case insensitive so you cant have a file called “Hello.doc” and one called “hello.doc”.</p>
<p>There are some file names such as <code>thumbs.db</code> which Dropbox cant store. There is a full list of them in the <a href="https://www.dropbox.com/en/help/145">“Ignored Files” section of this document</a>. Rclone will issue an error message <code>File name disallowed - not uploading</code> if it attempts to upload one of those file names, but the sync wont fail.</p>
<p>If you have more than 10,000 files in a directory then <code>rclone purge dropbox:dir</code> will return the error <code>Failed to purge: There are too many files involved in this operation</code>. As a work-around do an <code>rclone delete dropbox:dir</code> followed by an <code>rclone rmdir dropbox:dir</code>.</p>
<h2 id="ftp">FTP</h2>
<p>FTP is the File Transfer Protocol. FTP support is provided using the <a href="https://godoc.org/github.com/jlaffaye/ftp">github.com/jlaffaye/ftp</a> package.</p>
<p>Here is an example of making an FTP configuration. First run</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process. An FTP remote only needs a host together with and a username and a password. With anonymous FTP server, you will need to use <code>anonymous</code> as username and your email address as the password.</p>
<pre><code>No remotes found - make a new one
n) New remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
n/r/c/s/q&gt; n
name&gt; remote
Type of storage to configure.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
[snip]
10 / FTP Connection
\ &quot;ftp&quot;
[snip]
Storage&gt; ftp
** See help for ftp backend at: https://rclone.org/ftp/ **
FTP host to connect to
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
1 / Connect to ftp.example.com
\ &quot;ftp.example.com&quot;
host&gt; ftp.example.com
FTP username, leave blank for current username, ncw
Enter a string value. Press Enter for the default (&quot;&quot;).
user&gt;
FTP port, leave blank to use default (21)
Enter a string value. Press Enter for the default (&quot;&quot;).
port&gt;
FTP password
y) Yes type in my own password
g) Generate random password
y/g&gt; y
Enter the password:
password:
Confirm the password:
password:
Use FTP over TLS (Implicit)
Enter a boolean value (true or false). Press Enter for the default (&quot;false&quot;).
tls&gt;
Remote config
--------------------
[remote]
type = ftp
host = ftp.example.com
pass = *** ENCRYPTED ***
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>This remote is called <code>remote</code> and can now be used like this</p>
<p>See all directories in the home directory</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new directory</p>
<pre><code>rclone mkdir remote:path/to/directory</code></pre>
<p>List the contents of a directory</p>
<pre><code>rclone ls remote:path/to/directory</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote directory, deleting any excess files in the directory.</p>
<pre><code>rclone sync /home/local/directory remote:directory</code></pre>
<h3 id="modified-time-2">Modified time</h3>
<p>FTP does not support modified times. Any times you see on the server will be time of upload.</p>
<h3 id="checksums">Checksums</h3>
<p>FTP does not support any checksums.</p>
<h3 id="implicit-tls">Implicit TLS</h3>
<p>FTP supports implicit FTP over TLS servers (FTPS). This has to be enabled in the config for the remote. The default FTPS port is <code>990</code> so the port will likely have to be explictly set in the config for the remote.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/ftp/ftp.go then run make backenddocs -->
<h3 id="standard-options-8">Standard Options</h3>
<p>Here are the standard options specific to ftp (FTP Connection).</p>
<h4 id="ftp-host">ftp-host</h4>
<p>FTP host to connect to</p>
<ul>
<li>Config: host</li>
<li>Env Var: RCLONE_FTP_HOST</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“ftp.example.com”
<ul>
<li>Connect to ftp.example.com</li>
</ul></li>
</ul></li>
</ul>
<h4 id="ftp-user">ftp-user</h4>
<p>FTP username, leave blank for current username, $USER</p>
<ul>
<li>Config: user</li>
<li>Env Var: RCLONE_FTP_USER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="ftp-port">ftp-port</h4>
<p>FTP port, leave blank to use default (21)</p>
<ul>
<li>Config: port</li>
<li>Env Var: RCLONE_FTP_PORT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="ftp-pass">ftp-pass</h4>
<p>FTP password</p>
<ul>
<li>Config: pass</li>
<li>Env Var: RCLONE_FTP_PASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="ftp-tls">ftp-tls</h4>
<p>Use FTP over TLS (Implicit)</p>
<ul>
<li>Config: tls</li>
<li>Env Var: RCLONE_FTP_TLS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h3 id="advanced-options-7">Advanced Options</h3>
<p>Here are the advanced options specific to ftp (FTP Connection).</p>
<h4 id="ftp-concurrency">ftp-concurrency</h4>
<p>Maximum number of FTP simultaneous connections, 0 for unlimited</p>
<ul>
<li>Config: concurrency</li>
<li>Env Var: RCLONE_FTP_CONCURRENCY</li>
<li>Type: int</li>
<li>Default: 0</li>
</ul>
<h4 id="ftp-no-check-certificate">ftp-no-check-certificate</h4>
<p>Do not verify the TLS certificate of the server</p>
<ul>
<li>Config: no_check_certificate</li>
<li>Env Var: RCLONE_FTP_NO_CHECK_CERTIFICATE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-4">Limitations</h3>
<p>Note that since FTP isnt HTTP based the following flags dont work with it: <code>--dump-headers</code>, <code>--dump-bodies</code>, <code>--dump-auth</code></p>
<p>Note that <code>--timeout</code> isnt supported (but <code>--contimeout</code> is).</p>
<p>Note that <code>--bind</code> isnt supported.</p>
<p>FTP could support server side move but doesnt yet.</p>
<p>Note that the ftp backend does not support the <code>ftp_proxy</code> environment variable yet.</p>
<p>Note that while implicit FTP over TLS is supported, explicit FTP over TLS is not.</p>
<h2 id="google-cloud-storage">Google Cloud Storage</h2>
<p>Paths are specified as <code>remote:bucket</code> (or <code>remote:</code> for the <code>lsd</code> command.) You may put subdirectories in too, eg <code>remote:bucket/path/to/dir</code>.</p>
<p>The initial setup for google cloud storage involves getting a token from Google Cloud Storage which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>n) New remote
d) Delete remote
q) Quit config
e/n/d/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
7 / Google Drive
\ &quot;drive&quot;
8 / Hubic
\ &quot;hubic&quot;
9 / Local Disk
\ &quot;local&quot;
10 / Microsoft OneDrive
\ &quot;onedrive&quot;
11 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
12 / SSH/SFTP Connection
\ &quot;sftp&quot;
13 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 6
Google Application Client Id - leave blank normally.
client_id&gt;
Google Application Client Secret - leave blank normally.
client_secret&gt;
Project number optional - needed only for list/create/delete buckets - see your developer console.
project_number&gt; 12345678
Service Account Credentials JSON file path - needed only if you want use SA instead of interactive login.
service_account_file&gt;
Access Control List for new objects.
Choose a number from below, or type in your own value
1 / Object owner gets OWNER access, and all Authenticated Users get READER access.
\ &quot;authenticatedRead&quot;
2 / Object owner gets OWNER access, and project team owners get OWNER access.
\ &quot;bucketOwnerFullControl&quot;
3 / Object owner gets OWNER access, and project team owners get READER access.
\ &quot;bucketOwnerRead&quot;
4 / Object owner gets OWNER access [default if left blank].
\ &quot;private&quot;
5 / Object owner gets OWNER access, and project team members get access according to their roles.
\ &quot;projectPrivate&quot;
6 / Object owner gets OWNER access, and all Users get READER access.
\ &quot;publicRead&quot;
object_acl&gt; 4
Access Control List for new buckets.
Choose a number from below, or type in your own value
1 / Project team owners get OWNER access, and all Authenticated Users get READER access.
\ &quot;authenticatedRead&quot;
2 / Project team owners get OWNER access [default if left blank].
\ &quot;private&quot;
3 / Project team members get access according to their roles.
\ &quot;projectPrivate&quot;
4 / Project team owners get OWNER access, and all Users get READER access.
\ &quot;publicRead&quot;
5 / Project team owners get OWNER access, and all Users get WRITER access.
\ &quot;publicReadWrite&quot;
bucket_acl&gt; 2
Location for the newly created buckets.
Choose a number from below, or type in your own value
1 / Empty for default location (US).
\ &quot;&quot;
2 / Multi-regional location for Asia.
\ &quot;asia&quot;
3 / Multi-regional location for Europe.
\ &quot;eu&quot;
4 / Multi-regional location for United States.
\ &quot;us&quot;
5 / Taiwan.
\ &quot;asia-east1&quot;
6 / Tokyo.
\ &quot;asia-northeast1&quot;
7 / Singapore.
\ &quot;asia-southeast1&quot;
8 / Sydney.
\ &quot;australia-southeast1&quot;
9 / Belgium.
\ &quot;europe-west1&quot;
10 / London.
\ &quot;europe-west2&quot;
11 / Iowa.
\ &quot;us-central1&quot;
12 / South Carolina.
\ &quot;us-east1&quot;
13 / Northern Virginia.
\ &quot;us-east4&quot;
14 / Oregon.
\ &quot;us-west1&quot;
location&gt; 12
The storage class to use when storing objects in Google Cloud Storage.
Choose a number from below, or type in your own value
1 / Default
\ &quot;&quot;
2 / Multi-regional storage class
\ &quot;MULTI_REGIONAL&quot;
3 / Regional storage class
\ &quot;REGIONAL&quot;
4 / Nearline storage class
\ &quot;NEARLINE&quot;
5 / Coldline storage class
\ &quot;COLDLINE&quot;
6 / Durable reduced availability storage class
\ &quot;DURABLE_REDUCED_AVAILABILITY&quot;
storage_class&gt; 5
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine or Y didn&#39;t work
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
--------------------
[remote]
type = google cloud storage
client_id =
client_secret =
token = {&quot;AccessToken&quot;:&quot;xxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&quot;,&quot;RefreshToken&quot;:&quot;x/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx_xxxxxxxxx&quot;,&quot;Expiry&quot;:&quot;2014-07-17T20:49:14.929208288+01:00&quot;,&quot;Extra&quot;:null}
project_number = 12345678
object_acl = private
bucket_acl = private
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from Google if you use auto config mode. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall, or use manual mode.</p>
<p>This remote is called <code>remote</code> and can now be used like this</p>
<p>See all the buckets in your project</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new bucket</p>
<pre><code>rclone mkdir remote:bucket</code></pre>
<p>List the contents of a bucket</p>
<pre><code>rclone ls remote:bucket</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote bucket, deleting any excess files in the bucket.</p>
<pre><code>rclone sync /home/local/directory remote:bucket</code></pre>
<h3 id="service-account-support">Service Account support</h3>
<p>You can set up rclone with Google Cloud Storage in an unattended mode, i.e. not tied to a specific end-user Google account. This is useful when you want to synchronise files onto machines that dont have actively logged-in users, for example build machines.</p>
<p>To get credentials for Google Cloud Platform <a href="https://cloud.google.com/iam/docs/service-accounts">IAM Service Accounts</a>, please head to the <a href="https://console.cloud.google.com/permissions/serviceaccounts">Service Account</a> section of the Google Developer Console. Service Accounts behave just like normal <code>User</code> permissions in <a href="https://cloud.google.com/storage/docs/access-control">Google Cloud Storage ACLs</a>, so you can limit their access (e.g. make them read only). After creating an account, a JSON file containing the Service Accounts credentials will be downloaded onto your machines. These credentials are what rclone will use for authentication.</p>
<p>To use a Service Account instead of OAuth2 token flow, enter the path to your Service Account credentials at the <code>service_account_file</code> prompt and rclone wont use the browser based authentication flow. If youd rather stuff the contents of the credentials file into the rclone config file, you can set <code>service_account_credentials</code> with the actual contents of the file instead, or set the equivalent environment variable.</p>
<h3 id="application-default-credentials">Application Default Credentials</h3>
<p>If no other source of credentials is provided, rclone will fall back to <a href="https://cloud.google.com/video-intelligence/docs/common/auth#authenticating_with_application_default_credentials">Application Default Credentials</a> this is useful both when you already have configured authentication for your developer account, or in production when running on a google compute host. Note that if running in docker, you may need to run additional commands on your google compute machine - <a href="https://cloud.google.com/container-registry/docs/advanced-authentication#gcloud_as_a_docker_credential_helper">see this page</a>.</p>
<p>Note that in the case application default credentials are used, there is no need to explicitly configure a project number.</p>
<h3 id="fast-list-3">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="modified-time-3">Modified time</h3>
<p>Google google cloud storage stores md5sums natively and rclone stores modification times as metadata on the object, under the “mtime” key in RFC3339 format accurate to 1ns.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/googlecloudstorage/googlecloudstorage.go then run make backenddocs -->
<h3 id="standard-options-9">Standard Options</h3>
<p>Here are the standard options specific to google cloud storage (Google Cloud Storage (this is not Google Drive)).</p>
<h4 id="gcs-client-id">gcs-client-id</h4>
<p>Google Application Client Id Leave blank normally.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_GCS_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="gcs-client-secret">gcs-client-secret</h4>
<p>Google Application Client Secret Leave blank normally.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_GCS_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="gcs-project-number">gcs-project-number</h4>
<p>Project number. Optional - needed only for list/create/delete buckets - see your developer console.</p>
<ul>
<li>Config: project_number</li>
<li>Env Var: RCLONE_GCS_PROJECT_NUMBER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="gcs-service-account-file">gcs-service-account-file</h4>
<p>Service Account Credentials JSON file path Leave blank normally. Needed only if you want use SA instead of interactive login.</p>
<ul>
<li>Config: service_account_file</li>
<li>Env Var: RCLONE_GCS_SERVICE_ACCOUNT_FILE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="gcs-service-account-credentials">gcs-service-account-credentials</h4>
<p>Service Account Credentials JSON blob Leave blank normally. Needed only if you want use SA instead of interactive login.</p>
<ul>
<li>Config: service_account_credentials</li>
<li>Env Var: RCLONE_GCS_SERVICE_ACCOUNT_CREDENTIALS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="gcs-object-acl">gcs-object-acl</h4>
<p>Access Control List for new objects.</p>
<ul>
<li>Config: object_acl</li>
<li>Env Var: RCLONE_GCS_OBJECT_ACL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“authenticatedRead”
<ul>
<li>Object owner gets OWNER access, and all Authenticated Users get READER access.</li>
</ul></li>
<li>“bucketOwnerFullControl”
<ul>
<li>Object owner gets OWNER access, and project team owners get OWNER access.</li>
</ul></li>
<li>“bucketOwnerRead”
<ul>
<li>Object owner gets OWNER access, and project team owners get READER access.</li>
</ul></li>
<li>“private”
<ul>
<li>Object owner gets OWNER access [default if left blank].</li>
</ul></li>
<li>“projectPrivate”
<ul>
<li>Object owner gets OWNER access, and project team members get access according to their roles.</li>
</ul></li>
<li>“publicRead”
<ul>
<li>Object owner gets OWNER access, and all Users get READER access.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="gcs-bucket-acl">gcs-bucket-acl</h4>
<p>Access Control List for new buckets.</p>
<ul>
<li>Config: bucket_acl</li>
<li>Env Var: RCLONE_GCS_BUCKET_ACL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“authenticatedRead”
<ul>
<li>Project team owners get OWNER access, and all Authenticated Users get READER access.</li>
</ul></li>
<li>“private”
<ul>
<li>Project team owners get OWNER access [default if left blank].</li>
</ul></li>
<li>“projectPrivate”
<ul>
<li>Project team members get access according to their roles.</li>
</ul></li>
<li>“publicRead”
<ul>
<li>Project team owners get OWNER access, and all Users get READER access.</li>
</ul></li>
<li>“publicReadWrite”
<ul>
<li>Project team owners get OWNER access, and all Users get WRITER access.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="gcs-bucket-policy-only">gcs-bucket-policy-only</h4>
<p>Access checks should use bucket-level IAM policies.</p>
<p>If you want to upload objects to a bucket with Bucket Policy Only set then you will need to set this.</p>
<p>When it is set, rclone:</p>
<ul>
<li>ignores ACLs set on buckets</li>
<li>ignores ACLs set on objects</li>
<li>creates buckets with Bucket Policy Only set</li>
</ul>
<p>Docs: https://cloud.google.com/storage/docs/bucket-policy-only</p>
<ul>
<li>Config: bucket_policy_only</li>
<li>Env Var: RCLONE_GCS_BUCKET_POLICY_ONLY</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="gcs-location">gcs-location</h4>
<p>Location for the newly created buckets.</p>
<ul>
<li>Config: location</li>
<li>Env Var: RCLONE_GCS_LOCATION</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>Empty for default location (US).</li>
</ul></li>
<li>“asia”
<ul>
<li>Multi-regional location for Asia.</li>
</ul></li>
<li>“eu”
<ul>
<li>Multi-regional location for Europe.</li>
</ul></li>
<li>“us”
<ul>
<li>Multi-regional location for United States.</li>
</ul></li>
<li>“asia-east1”
<ul>
<li>Taiwan.</li>
</ul></li>
<li>“asia-east2”
<ul>
<li>Hong Kong.</li>
</ul></li>
<li>“asia-northeast1”
<ul>
<li>Tokyo.</li>
</ul></li>
<li>“asia-south1”
<ul>
<li>Mumbai.</li>
</ul></li>
<li>“asia-southeast1”
<ul>
<li>Singapore.</li>
</ul></li>
<li>“australia-southeast1”
<ul>
<li>Sydney.</li>
</ul></li>
<li>“europe-north1”
<ul>
<li>Finland.</li>
</ul></li>
<li>“europe-west1”
<ul>
<li>Belgium.</li>
</ul></li>
<li>“europe-west2”
<ul>
<li>London.</li>
</ul></li>
<li>“europe-west3”
<ul>
<li>Frankfurt.</li>
</ul></li>
<li>“europe-west4”
<ul>
<li>Netherlands.</li>
</ul></li>
<li>“us-central1”
<ul>
<li>Iowa.</li>
</ul></li>
<li>“us-east1”
<ul>
<li>South Carolina.</li>
</ul></li>
<li>“us-east4”
<ul>
<li>Northern Virginia.</li>
</ul></li>
<li>“us-west1”
<ul>
<li>Oregon.</li>
</ul></li>
<li>“us-west2”
<ul>
<li>California.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="gcs-storage-class">gcs-storage-class</h4>
<p>The storage class to use when storing objects in Google Cloud Storage.</p>
<ul>
<li>Config: storage_class</li>
<li>Env Var: RCLONE_GCS_STORAGE_CLASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>Default</li>
</ul></li>
<li>“MULTI_REGIONAL”
<ul>
<li>Multi-regional storage class</li>
</ul></li>
<li>“REGIONAL”
<ul>
<li>Regional storage class</li>
</ul></li>
<li>“NEARLINE”
<ul>
<li>Nearline storage class</li>
</ul></li>
<li>“COLDLINE”
<ul>
<li>Coldline storage class</li>
</ul></li>
<li>“DURABLE_REDUCED_AVAILABILITY”
<ul>
<li>Durable reduced availability storage class</li>
</ul></li>
</ul></li>
</ul>
<!--- autogenerated options stop -->
<h2 id="google-drive">Google Drive</h2>
<p>Paths are specified as <code>drive:path</code></p>
<p>Drive paths may be as deep as required, eg <code>drive:directory/subdirectory</code>.</p>
<p>The initial setup for drive involves getting a token from Google drive which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
n/r/c/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
[snip]
10 / Google Drive
\ &quot;drive&quot;
[snip]
Storage&gt; drive
Google Application Client Id - leave blank normally.
client_id&gt;
Google Application Client Secret - leave blank normally.
client_secret&gt;
Scope that rclone should use when requesting access from drive.
Choose a number from below, or type in your own value
1 / Full access all files, excluding Application Data Folder.
\ &quot;drive&quot;
2 / Read-only access to file metadata and file contents.
\ &quot;drive.readonly&quot;
/ Access to files created by rclone only.
3 | These are visible in the drive website.
| File authorization is revoked when the user deauthorizes the app.
\ &quot;drive.file&quot;
/ Allows read and write access to the Application Data folder.
4 | This is not visible in the drive website.
\ &quot;drive.appfolder&quot;
/ Allows read-only access to file metadata but
5 | does not allow any access to read or download file content.
\ &quot;drive.metadata.readonly&quot;
scope&gt; 1
ID of the root folder - leave blank normally. Fill in to access &quot;Computers&quot; folders. (see docs).
root_folder_id&gt;
Service Account Credentials JSON file path - needed only if you want use SA instead of interactive login.
service_account_file&gt;
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine or Y didn&#39;t work
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
Configure this as a team drive?
y) Yes
n) No
y/n&gt; n
--------------------
[remote]
client_id =
client_secret =
scope = drive
root_folder_id =
service_account_file =
token = {&quot;access_token&quot;:&quot;XXX&quot;,&quot;token_type&quot;:&quot;Bearer&quot;,&quot;refresh_token&quot;:&quot;XXX&quot;,&quot;expiry&quot;:&quot;2014-03-16T13:57:58.955387075Z&quot;}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from Google if you use auto config mode. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall, or use manual mode.</p>
<p>You can then use it like this,</p>
<p>List directories in top level of your drive</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your drive</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to a drive directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="scopes">Scopes</h3>
<p>Rclone allows you to select which scope you would like for rclone to use. This changes what type of token is granted to rclone. <a href="https://developers.google.com/drive/v3/web/about-auth">The scopes are defined here.</a>.</p>
<p>The scope are</p>
<h4 id="drive">drive</h4>
<p>This is the default scope and allows full access to all files, except for the Application Data Folder (see below).</p>
<p>Choose this one if you arent sure.</p>
<h4 id="drive.readonly">drive.readonly</h4>
<p>This allows read only access to all files. Files may be listed and downloaded but not uploaded, renamed or deleted.</p>
<h4 id="drive.file">drive.file</h4>
<p>With this scope rclone can read/view/modify only those files and folders it creates.</p>
<p>So if you uploaded files to drive via the web interface (or any other means) they will not be visible to rclone.</p>
<p>This can be useful if you are using rclone to backup data and you want to be sure confidential data on your drive is not visible to rclone.</p>
<p>Files created with this scope are visible in the web interface.</p>
<h4 id="drive.appfolder">drive.appfolder</h4>
<p>This gives rclone its own private area to store files. Rclone will not be able to see any other files on your drive and you wont be able to see rclones files from the web interface either.</p>
<h4 id="drive.metadata.readonly">drive.metadata.readonly</h4>
<p>This allows read only access to file names only. It does not allow rclone to download or upload data, or rename or delete files or directories.</p>
<h3 id="root-folder-id">Root folder ID</h3>
<p>You can set the <code>root_folder_id</code> for rclone. This is the directory (identified by its <code>Folder ID</code>) that rclone considers to be the root of your drive.</p>
<p>Normally you will leave this blank and rclone will determine the correct root to use itself.</p>
<p>However you can set this to restrict rclone to a specific folder hierarchy or to access data within the “Computers” tab on the drive web interface (where files from Googles Backup and Sync desktop program go).</p>
<p>In order to do this you will have to find the <code>Folder ID</code> of the directory you wish rclone to display. This will be the last segment of the URL when you open the relevant folder in the drive web interface.</p>
<p>So if the folder you want rclone to use has a URL which looks like <code>https://drive.google.com/drive/folders/1XyfxxxxxxxxxxxxxxxxxxxxxxxxxKHCh</code> in the browser, then you use <code>1XyfxxxxxxxxxxxxxxxxxxxxxxxxxKHCh</code> as the <code>root_folder_id</code> in the config.</p>
<p><strong>NB</strong> folders under the “Computers” tab seem to be read only (drive gives a 500 error) when using rclone.</p>
<p>There doesnt appear to be an API to discover the folder IDs of the “Computers” tab - please contact us if you know otherwise!</p>
<p>Note also that rclone cant access any data under the “Backups” tab on the google drive web interface yet.</p>
<h3 id="service-account-support-1">Service Account support</h3>
<p>You can set up rclone with Google Drive in an unattended mode, i.e. not tied to a specific end-user Google account. This is useful when you want to synchronise files onto machines that dont have actively logged-in users, for example build machines.</p>
<p>To use a Service Account instead of OAuth2 token flow, enter the path to your Service Account credentials at the <code>service_account_file</code> prompt during <code>rclone config</code> and rclone wont use the browser based authentication flow. If youd rather stuff the contents of the credentials file into the rclone config file, you can set <code>service_account_credentials</code> with the actual contents of the file instead, or set the equivalent environment variable.</p>
<h4 id="use-case---google-appsg-suite-account-and-individual-drive">Use case - Google Apps/G-suite account and individual Drive</h4>
<p>Lets say that you are the administrator of a Google Apps (old) or G-suite account. The goal is to store data on an individuals Drive account, who IS a member of the domain. Well call the domain <strong>example.com</strong>, and the user <strong>foo@example.com</strong>.</p>
<p>Theres a few steps we need to go through to accomplish this:</p>
<h5 id="create-a-service-account-for-example.com">1. Create a service account for example.com</h5>
<ul>
<li>To create a service account and obtain its credentials, go to the <a href="https://console.developers.google.com">Google Developer Console</a>.</li>
<li>You must have a project - create one if you dont.</li>
<li>Then go to “IAM &amp; admin” -&gt; “Service Accounts”.</li>
<li>Use the “Create Credentials” button. Fill in “Service account name” with something that identifies your client. “Role” can be empty.</li>
<li>Tick “Furnish a new private key” - select “Key type JSON”.</li>
<li>Tick “Enable G Suite Domain-wide Delegation”. This option makes “impersonation” possible, as documented here: <a href="https://developers.google.com/identity/protocols/OAuth2ServiceAccount#delegatingauthority">Delegating domain-wide authority to the service account</a></li>
<li>These credentials are what rclone will use for authentication. If you ever need to remove access, press the “Delete service account key” button.</li>
</ul>
<h5 id="allowing-api-access-to-example.com-google-drive">2. Allowing API access to example.com Google Drive</h5>
<ul>
<li>Go to example.coms admin console</li>
<li>Go into “Security” (or use the search bar)</li>
<li>Select “Show more” and then “Advanced settings”</li>
<li>Select “Manage API client access” in the “Authentication” section</li>
<li>In the “Client Name” field enter the service accounts “Client ID” - this can be found in the Developer Console under “IAM &amp; Admin” -&gt; “Service Accounts”, then “View Client ID” for the newly created service account. It is a ~21 character numerical string.</li>
<li>In the next field, “One or More API Scopes”, enter <code>https://www.googleapis.com/auth/drive</code> to grant access to Google Drive specifically.</li>
</ul>
<h5 id="configure-rclone-assuming-a-new-install">3. Configure rclone, assuming a new install</h5>
<pre><code>rclone config
n/s/q&gt; n # New
name&gt;gdrive # Gdrive is an example name
Storage&gt; # Select the number shown for Google Drive
client_id&gt; # Can be left blank
client_secret&gt; # Can be left blank
scope&gt; # Select your scope, 1 for example
root_folder_id&gt; # Can be left blank
service_account_file&gt; /home/foo/myJSONfile.json # This is where the JSON file goes!
y/n&gt; # Auto config, y
</code></pre>
<h5 id="verify-that-its-working">4. Verify that its working</h5>
<ul>
<li><code>rclone -v --drive-impersonate foo@example.com lsf gdrive:backup</code></li>
<li>The arguments do:
<ul>
<li><code>-v</code> - verbose logging</li>
<li><code>--drive-impersonate foo@example.com</code> - this is what does the magic, pretending to be user foo.</li>
<li><code>lsf</code> - list files in a parsing friendly way</li>
<li><code>gdrive:backup</code> - use the remote called gdrive, work in the folder named backup.</li>
</ul></li>
</ul>
<h3 id="team-drives">Team drives</h3>
<p>If you want to configure the remote to point to a Google Team Drive then answer <code>y</code> to the question <code>Configure this as a team drive?</code>.</p>
<p>This will fetch the list of Team Drives from google and allow you to configure which one you want to use. You can also type in a team drive ID if you prefer.</p>
<p>For example:</p>
<pre><code>Configure this as a team drive?
y) Yes
n) No
y/n&gt; y
Fetching team drive list...
Choose a number from below, or type in your own value
1 / Rclone Test
\ &quot;xxxxxxxxxxxxxxxxxxxx&quot;
2 / Rclone Test 2
\ &quot;yyyyyyyyyyyyyyyyyyyy&quot;
3 / Rclone Test 3
\ &quot;zzzzzzzzzzzzzzzzzzzz&quot;
Enter a Team Drive ID&gt; 1
--------------------
[remote]
client_id =
client_secret =
token = {&quot;AccessToken&quot;:&quot;xxxx.x.xxxxx_xxxxxxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&quot;,&quot;RefreshToken&quot;:&quot;1/xxxxxxxxxxxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxxxx&quot;,&quot;Expiry&quot;:&quot;2014-03-16T13:57:58.955387075Z&quot;,&quot;Extra&quot;:null}
team_drive = xxxxxxxxxxxxxxxxxxxx
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<h3 id="fast-list-4">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<p>It does this by combining multiple <code>list</code> calls into a single API request.</p>
<p>This works by combining many <code>'%s' in parents</code> filters into one expression. To list the contents of directories a, b and c, the following requests will be send by the regular <code>List</code> function:</p>
<pre><code>trashed=false and &#39;a&#39; in parents
trashed=false and &#39;b&#39; in parents
trashed=false and &#39;c&#39; in parents</code></pre>
<p>These can now be combined into a single request:</p>
<pre><code>trashed=false and (&#39;a&#39; in parents or &#39;b&#39; in parents or &#39;c&#39; in parents)</code></pre>
<p>The implementation of <code>ListR</code> will put up to 50 <code>parents</code> filters into one request. It will use the <code>--checkers</code> value to specify the number of requests to run in parallel.</p>
<p>In tests, these batch requests were up to 20x faster than the regular method. Running the following command against different sized folders gives:</p>
<pre><code>rclone lsjson -vv -R --checkers=6 gdrive:folder</code></pre>
<p>small folder (220 directories, 700 files):</p>
<ul>
<li>without <code>--fast-list</code>: 38s</li>
<li>with <code>--fast-list</code>: 10s</li>
</ul>
<p>large folder (10600 directories, 39000 files):</p>
<ul>
<li>without <code>--fast-list</code>: 22:05 min</li>
<li>with <code>--fast-list</code>: 58s</li>
</ul>
<h3 id="modified-time-4">Modified time</h3>
<p>Google drive stores modification times accurate to 1 ms.</p>
<h3 id="revisions">Revisions</h3>
<p>Google drive stores revisions of files. When you upload a change to an existing file to google drive using rclone it will create a new revision of that file.</p>
<p>Revisions follow the standard google policy which at time of writing was</p>
<ul>
<li>They are deleted after 30 days or 100 revisions (whatever comes first).</li>
<li>They do not count towards a user storage quota.</li>
</ul>
<h3 id="deleting-files-2">Deleting files</h3>
<p>By default rclone will send all files to the trash when deleting files. If deleting them permanently is required then use the <code>--drive-use-trash=false</code> flag, or set the equivalent environment variable.</p>
<h3 id="emptying-trash">Emptying trash</h3>
<p>If you wish to empty your trash you can use the <code>rclone cleanup remote:</code> command which will permanently delete all your trashed files. This command does not take any path arguments.</p>
<p>Note that Google Drive takes some time (minutes to days) to empty the trash even though the command returns within a few seconds. No output is echoed, so there will be no confirmation even using -v or -vv.</p>
<h3 id="quota-information">Quota information</h3>
<p>To view your current quota you can use the <code>rclone about remote:</code> command which will display your usage limit (quota), the usage in Google Drive, the size of all files in the Trash and the space used by other Google services such as Gmail. This command does not take any path arguments.</p>
<h4 id="importexport-of-google-documents">Import/Export of google documents</h4>
<p>Google documents can be exported from and uploaded to Google Drive.</p>
<p>When rclone downloads a Google doc it chooses a format to download depending upon the <code>--drive-export-formats</code> setting. By default the export formats are <code>docx,xlsx,pptx,svg</code> which are a sensible default for an editable document.</p>
<p>When choosing a format, rclone runs down the list provided in order and chooses the first file format the doc can be exported as from the list. If the file cant be exported to a format on the formats list, then rclone will choose a format from the default list.</p>
<p>If you prefer an archive copy then you might use <code>--drive-export-formats pdf</code>, or if you prefer openoffice/libreoffice formats you might use <code>--drive-export-formats ods,odt,odp</code>.</p>
<p>Note that rclone adds the extension to the google doc, so if it is called <code>My Spreadsheet</code> on google docs, it will be exported as <code>My Spreadsheet.xlsx</code> or <code>My Spreadsheet.pdf</code> etc.</p>
<p>When importing files into Google Drive, rclone will convert all files with an extension in <code>--drive-import-formats</code> to their associated document type. rclone will not convert any files by default, since the conversion is lossy process.</p>
<p>The conversion must result in a file with the same extension when the <code>--drive-export-formats</code> rules are applied to the uploaded document.</p>
<p>Here are some examples for allowed and prohibited conversions.</p>
<table>
<thead>
<tr class="header">
<th>export-formats</th>
<th>import-formats</th>
<th>Upload Ext</th>
<th>Document Ext</th>
<th>Allowed</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>odt</td>
<td>odt</td>
<td>odt</td>
<td>odt</td>
<td>Yes</td>
</tr>
<tr class="even">
<td>odt</td>
<td>docx,odt</td>
<td>odt</td>
<td>odt</td>
<td>Yes</td>
</tr>
<tr class="odd">
<td></td>
<td>docx</td>
<td>docx</td>
<td>docx</td>
<td>Yes</td>
</tr>
<tr class="even">
<td></td>
<td>odt</td>
<td>odt</td>
<td>docx</td>
<td>No</td>
</tr>
<tr class="odd">
<td>odt,docx</td>
<td>docx,odt</td>
<td>docx</td>
<td>odt</td>
<td>No</td>
</tr>
<tr class="even">
<td>docx,odt</td>
<td>docx,odt</td>
<td>docx</td>
<td>docx</td>
<td>Yes</td>
</tr>
<tr class="odd">
<td>docx,odt</td>
<td>docx,odt</td>
<td>odt</td>
<td>docx</td>
<td>No</td>
</tr>
</tbody>
</table>
<p>This limitation can be disabled by specifying <code>--drive-allow-import-name-change</code>. When using this flag, rclone can convert multiple files types resulting in the same document type at once, eg with <code>--drive-import-formats docx,odt,txt</code>, all files having these extension would result in a document represented as a docx file. This brings the additional risk of overwriting a document, if multiple files have the same stem. Many rclone operations will not handle this name change in any way. They assume an equal name when copying files and might copy the file again or delete them when the name changes.</p>
<p>Here are the possible export extensions with their corresponding mime types. Most of these can also be used for importing, but there more that are not listed here. Some of these additional ones might only be available when the operating system provides the correct MIME type entries.</p>
<p>This list can be changed by Google Drive at any time and might not represent the currently available conversions.</p>
<table>
<colgroup>
<col style="width: 28%" />
<col style="width: 34%" />
<col style="width: 37%" />
</colgroup>
<thead>
<tr class="header">
<th>Extension</th>
<th>Mime Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>csv</td>
<td>text/csv</td>
<td>Standard CSV format for Spreadsheets</td>
</tr>
<tr class="even">
<td>docx</td>
<td>application/vnd.openxmlformats-officedocument.wordprocessingml.document</td>
<td>Microsoft Office Document</td>
</tr>
<tr class="odd">
<td>epub</td>
<td>application/epub+zip</td>
<td>E-book format</td>
</tr>
<tr class="even">
<td>html</td>
<td>text/html</td>
<td>An HTML Document</td>
</tr>
<tr class="odd">
<td>jpg</td>
<td>image/jpeg</td>
<td>A JPEG Image File</td>
</tr>
<tr class="even">
<td>json</td>
<td>application/vnd.google-apps.script+json</td>
<td>JSON Text Format</td>
</tr>
<tr class="odd">
<td>odp</td>
<td>application/vnd.oasis.opendocument.presentation</td>
<td>Openoffice Presentation</td>
</tr>
<tr class="even">
<td>ods</td>
<td>application/vnd.oasis.opendocument.spreadsheet</td>
<td>Openoffice Spreadsheet</td>
</tr>
<tr class="odd">
<td>ods</td>
<td>application/x-vnd.oasis.opendocument.spreadsheet</td>
<td>Openoffice Spreadsheet</td>
</tr>
<tr class="even">
<td>odt</td>
<td>application/vnd.oasis.opendocument.text</td>
<td>Openoffice Document</td>
</tr>
<tr class="odd">
<td>pdf</td>
<td>application/pdf</td>
<td>Adobe PDF Format</td>
</tr>
<tr class="even">
<td>png</td>
<td>image/png</td>
<td>PNG Image Format</td>
</tr>
<tr class="odd">
<td>pptx</td>
<td>application/vnd.openxmlformats-officedocument.presentationml.presentation</td>
<td>Microsoft Office Powerpoint</td>
</tr>
<tr class="even">
<td>rtf</td>
<td>application/rtf</td>
<td>Rich Text Format</td>
</tr>
<tr class="odd">
<td>svg</td>
<td>image/svg+xml</td>
<td>Scalable Vector Graphics Format</td>
</tr>
<tr class="even">
<td>tsv</td>
<td>text/tab-separated-values</td>
<td>Standard TSV format for spreadsheets</td>
</tr>
<tr class="odd">
<td>txt</td>
<td>text/plain</td>
<td>Plain Text</td>
</tr>
<tr class="even">
<td>xlsx</td>
<td>application/vnd.openxmlformats-officedocument.spreadsheetml.sheet</td>
<td>Microsoft Office Spreadsheet</td>
</tr>
<tr class="odd">
<td>zip</td>
<td>application/zip</td>
<td>A ZIP file of HTML, Images CSS</td>
</tr>
</tbody>
</table>
<p>Google documents can also be exported as link files. These files will open a browser window for the Google Docs website of that document when opened. The link file extension has to be specified as a <code>--drive-export-formats</code> parameter. They will match all available Google Documents.</p>
<table>
<thead>
<tr class="header">
<th>Extension</th>
<th>Description</th>
<th>OS Support</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>desktop</td>
<td>freedesktop.org specified desktop entry</td>
<td>Linux</td>
</tr>
<tr class="even">
<td>link.html</td>
<td>An HTML Document with a redirect</td>
<td>All</td>
</tr>
<tr class="odd">
<td>url</td>
<td>INI style link file</td>
<td>macOS, Windows</td>
</tr>
<tr class="even">
<td>webloc</td>
<td>macOS specific XML format</td>
<td>macOS</td>
</tr>
</tbody>
</table>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/drive/drive.go then run make backenddocs -->
<h3 id="standard-options-10">Standard Options</h3>
<p>Here are the standard options specific to drive (Google Drive).</p>
<h4 id="drive-client-id">drive-client-id</h4>
<p>Google Application Client Id Setting your own is recommended. See https://rclone.org/drive/#making-your-own-client-id for how to create your own. If you leave this blank, it will use an internal key which is low performance.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_DRIVE_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-client-secret">drive-client-secret</h4>
<p>Google Application Client Secret Setting your own is recommended.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_DRIVE_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-scope">drive-scope</h4>
<p>Scope that rclone should use when requesting access from drive.</p>
<ul>
<li>Config: scope</li>
<li>Env Var: RCLONE_DRIVE_SCOPE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“drive”
<ul>
<li>Full access all files, excluding Application Data Folder.</li>
</ul></li>
<li>“drive.readonly”
<ul>
<li>Read-only access to file metadata and file contents.</li>
</ul></li>
<li>“drive.file”
<ul>
<li>Access to files created by rclone only.</li>
<li>These are visible in the drive website.</li>
<li>File authorization is revoked when the user deauthorizes the app.</li>
</ul></li>
<li>“drive.appfolder”
<ul>
<li>Allows read and write access to the Application Data folder.</li>
<li>This is not visible in the drive website.</li>
</ul></li>
<li>“drive.metadata.readonly”
<ul>
<li>Allows read-only access to file metadata but</li>
<li>does not allow any access to read or download file content.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="drive-root-folder-id">drive-root-folder-id</h4>
<p>ID of the root folder Leave blank normally. Fill in to access “Computers” folders. (see docs).</p>
<ul>
<li>Config: root_folder_id</li>
<li>Env Var: RCLONE_DRIVE_ROOT_FOLDER_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-service-account-file">drive-service-account-file</h4>
<p>Service Account Credentials JSON file path Leave blank normally. Needed only if you want use SA instead of interactive login.</p>
<ul>
<li>Config: service_account_file</li>
<li>Env Var: RCLONE_DRIVE_SERVICE_ACCOUNT_FILE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-8">Advanced Options</h3>
<p>Here are the advanced options specific to drive (Google Drive).</p>
<h4 id="drive-service-account-credentials">drive-service-account-credentials</h4>
<p>Service Account Credentials JSON blob Leave blank normally. Needed only if you want use SA instead of interactive login.</p>
<ul>
<li>Config: service_account_credentials</li>
<li>Env Var: RCLONE_DRIVE_SERVICE_ACCOUNT_CREDENTIALS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-team-drive">drive-team-drive</h4>
<p>ID of the Team Drive</p>
<ul>
<li>Config: team_drive</li>
<li>Env Var: RCLONE_DRIVE_TEAM_DRIVE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-auth-owner-only">drive-auth-owner-only</h4>
<p>Only consider files owned by the authenticated user.</p>
<ul>
<li>Config: auth_owner_only</li>
<li>Env Var: RCLONE_DRIVE_AUTH_OWNER_ONLY</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-use-trash">drive-use-trash</h4>
<p>Send files to the trash instead of deleting permanently. Defaults to true, namely sending files to the trash. Use <code>--drive-use-trash=false</code> to delete files permanently instead.</p>
<ul>
<li>Config: use_trash</li>
<li>Env Var: RCLONE_DRIVE_USE_TRASH</li>
<li>Type: bool</li>
<li>Default: true</li>
</ul>
<h4 id="drive-skip-gdocs">drive-skip-gdocs</h4>
<p>Skip google documents in all listings. If given, gdocs practically become invisible to rclone.</p>
<ul>
<li>Config: skip_gdocs</li>
<li>Env Var: RCLONE_DRIVE_SKIP_GDOCS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-skip-checksum-gphotos">drive-skip-checksum-gphotos</h4>
<p>Skip MD5 checksum on Google photos and videos only.</p>
<p>Use this if you get checksum errors when transferring Google photos or videos.</p>
<p>Setting this flag will cause Google photos and videos to return a blank MD5 checksum.</p>
<p>Google photos are identifed by being in the “photos” space.</p>
<p>Corrupted checksums are caused by Google modifying the image/video but not updating the checksum.</p>
<ul>
<li>Config: skip_checksum_gphotos</li>
<li>Env Var: RCLONE_DRIVE_SKIP_CHECKSUM_GPHOTOS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-shared-with-me">drive-shared-with-me</h4>
<p>Only show files that are shared with me.</p>
<p>Instructs rclone to operate on your “Shared with me” folder (where Google Drive lets you access the files and folders others have shared with you).</p>
<p>This works both with the “list” (lsd, lsl, etc) and the “copy” commands (copy, sync, etc), and with all other commands too.</p>
<ul>
<li>Config: shared_with_me</li>
<li>Env Var: RCLONE_DRIVE_SHARED_WITH_ME</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-trashed-only">drive-trashed-only</h4>
<p>Only show files that are in the trash. This will show trashed files in their original directory structure.</p>
<ul>
<li>Config: trashed_only</li>
<li>Env Var: RCLONE_DRIVE_TRASHED_ONLY</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-formats">drive-formats</h4>
<p>Deprecated: see export_formats</p>
<ul>
<li>Config: formats</li>
<li>Env Var: RCLONE_DRIVE_FORMATS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-export-formats">drive-export-formats</h4>
<p>Comma separated list of preferred formats for downloading Google docs.</p>
<ul>
<li>Config: export_formats</li>
<li>Env Var: RCLONE_DRIVE_EXPORT_FORMATS</li>
<li>Type: string</li>
<li>Default: “docx,xlsx,pptx,svg”</li>
</ul>
<h4 id="drive-import-formats">drive-import-formats</h4>
<p>Comma separated list of preferred formats for uploading Google docs.</p>
<ul>
<li>Config: import_formats</li>
<li>Env Var: RCLONE_DRIVE_IMPORT_FORMATS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-allow-import-name-change">drive-allow-import-name-change</h4>
<p>Allow the filetype to change when uploading Google docs (e.g. file.doc to file.docx). This will confuse sync and reupload every time.</p>
<ul>
<li>Config: allow_import_name_change</li>
<li>Env Var: RCLONE_DRIVE_ALLOW_IMPORT_NAME_CHANGE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-use-created-date">drive-use-created-date</h4>
<p>Use file created date instead of modified date.,</p>
<p>Useful when downloading data and you want the creation date used in place of the last modified date.</p>
<p><strong>WARNING</strong>: This flag may have some unexpected consequences.</p>
<p>When uploading to your drive all files will be overwritten unless they havent been modified since their creation. And the inverse will occur while downloading. This side effect can be avoided by using the “checksum” flag.</p>
<p>This feature was implemented to retain photos capture date as recorded by google photos. You will first need to check the “Create a Google Photos folder” option in your google drive settings. You can then copy or move the photos locally and use the date the image was taken (created) set as the modification date.</p>
<ul>
<li>Config: use_created_date</li>
<li>Env Var: RCLONE_DRIVE_USE_CREATED_DATE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-list-chunk">drive-list-chunk</h4>
<p>Size of listing chunk 100-1000. 0 to disable.</p>
<ul>
<li>Config: list_chunk</li>
<li>Env Var: RCLONE_DRIVE_LIST_CHUNK</li>
<li>Type: int</li>
<li>Default: 1000</li>
</ul>
<h4 id="drive-impersonate">drive-impersonate</h4>
<p>Impersonate this user when using a service account.</p>
<ul>
<li>Config: impersonate</li>
<li>Env Var: RCLONE_DRIVE_IMPERSONATE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="drive-alternate-export">drive-alternate-export</h4>
<p>Use alternate export URLs for google documents export.,</p>
<p>If this option is set this instructs rclone to use an alternate set of export URLs for drive documents. Users have reported that the official export URLs cant export large documents, whereas these unofficial ones can.</p>
<p>See rclone issue <a href="https://github.com/rclone/rclone/issues/2243">#2243</a> for background, <a href="https://issuetracker.google.com/issues/36761333">this google drive issue</a> and <a href="https://www.labnol.org/internet/direct-links-for-google-drive/28356/">this helpful post</a>.</p>
<ul>
<li>Config: alternate_export</li>
<li>Env Var: RCLONE_DRIVE_ALTERNATE_EXPORT</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-upload-cutoff">drive-upload-cutoff</h4>
<p>Cutoff for switching to chunked upload</p>
<ul>
<li>Config: upload_cutoff</li>
<li>Env Var: RCLONE_DRIVE_UPLOAD_CUTOFF</li>
<li>Type: SizeSuffix</li>
<li>Default: 8M</li>
</ul>
<h4 id="drive-chunk-size">drive-chunk-size</h4>
<p>Upload chunk size. Must a power of 2 &gt;= 256k.</p>
<p>Making this larger will improve performance, but note that each chunk is buffered in memory one per transfer.</p>
<p>Reducing this will reduce memory usage but decrease performance.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_DRIVE_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 8M</li>
</ul>
<h4 id="drive-acknowledge-abuse">drive-acknowledge-abuse</h4>
<p>Set to allow files which return cannotDownloadAbusiveFile to be downloaded.</p>
<p>If downloading a file returns the error “This file has been identified as malware or spam and cannot be downloaded” with the error code “cannotDownloadAbusiveFile” then supply this flag to rclone to indicate you acknowledge the risks of downloading the file and rclone will download it anyway.</p>
<ul>
<li>Config: acknowledge_abuse</li>
<li>Env Var: RCLONE_DRIVE_ACKNOWLEDGE_ABUSE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-keep-revision-forever">drive-keep-revision-forever</h4>
<p>Keep new head revision of each file forever.</p>
<ul>
<li>Config: keep_revision_forever</li>
<li>Env Var: RCLONE_DRIVE_KEEP_REVISION_FOREVER</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-size-as-quota">drive-size-as-quota</h4>
<p>Show storage quota usage for file size.</p>
<p>The storage used by a file is the size of the current version plus any older versions that have been set to keep forever.</p>
<ul>
<li>Config: size_as_quota</li>
<li>Env Var: RCLONE_DRIVE_SIZE_AS_QUOTA</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="drive-v2-download-min-size">drive-v2-download-min-size</h4>
<p>If Objects are greater, use drive v2 API to download.</p>
<ul>
<li>Config: v2_download_min_size</li>
<li>Env Var: RCLONE_DRIVE_V2_DOWNLOAD_MIN_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: off</li>
</ul>
<h4 id="drive-pacer-min-sleep">drive-pacer-min-sleep</h4>
<p>Minimum time to sleep between API calls.</p>
<ul>
<li>Config: pacer_min_sleep</li>
<li>Env Var: RCLONE_DRIVE_PACER_MIN_SLEEP</li>
<li>Type: Duration</li>
<li>Default: 100ms</li>
</ul>
<h4 id="drive-pacer-burst">drive-pacer-burst</h4>
<p>Number of API calls to allow without sleeping.</p>
<ul>
<li>Config: pacer_burst</li>
<li>Env Var: RCLONE_DRIVE_PACER_BURST</li>
<li>Type: int</li>
<li>Default: 100</li>
</ul>
<h4 id="drive-server-side-across-configs">drive-server-side-across-configs</h4>
<p>Allow server side operations (eg copy) to work across different drive configs.</p>
<p>This can be useful if you wish to do a server side copy between two different Google drives. Note that this isnt enabled by default because it isnt easy to tell if it will work beween any two configurations.</p>
<ul>
<li>Config: server_side_across_configs</li>
<li>Env Var: RCLONE_DRIVE_SERVER_SIDE_ACROSS_CONFIGS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-5">Limitations</h3>
<p>Drive has quite a lot of rate limiting. This causes rclone to be limited to transferring about 2 files per second only. Individual files may be transferred much faster at 100s of MBytes/s but lots of small files can take a long time.</p>
<p>Server side copies are also subject to a separate rate limit. If you see User rate limit exceeded errors, wait at least 24 hours and retry. You can disable server side copies with <code>--disable copy</code> to download and upload the files if you prefer.</p>
<h4 id="limitations-of-google-docs">Limitations of Google Docs</h4>
<p>Google docs will appear as size -1 in <code>rclone ls</code> and as size 0 in anything which uses the VFS layer, eg <code>rclone mount</code>, <code>rclone serve</code>.</p>
<p>This is because rclone cant find out the size of the Google docs without downloading them.</p>
<p>Google docs will transfer correctly with <code>rclone sync</code>, <code>rclone copy</code> etc as rclone knows to ignore the size when doing the transfer.</p>
<p>However an unfortunate consequence of this is that you cant download Google docs using <code>rclone mount</code> - you will get a 0 sized file. If you try again the doc may gain its correct size and be downloadable.</p>
<h3 id="duplicated-files">Duplicated files</h3>
<p>Sometimes, for no reason Ive been able to track down, drive will duplicate a file that rclone uploads. Drive unlike all the other remotes can have duplicated files.</p>
<p>Duplicated files cause problems with the syncing and you will see messages in the log about duplicates.</p>
<p>Use <code>rclone dedupe</code> to fix duplicated files.</p>
<p>Note that this isnt just a problem with rclone, even Google Photos on Android duplicates files on drive sometimes.</p>
<h3 id="rclone-appears-to-be-re-copying-files-it-shouldnt">Rclone appears to be re-copying files it shouldnt</h3>
<p>The most likely cause of this is the duplicated file issue above - run <code>rclone dedupe</code> and check your logs for duplicate object or directory messages.</p>
<p>This can also be caused by a delay/caching on google drives end when comparing directory listings. Specifically with team drives used in combination with fast-list. Files that were uploaded recently may not appear on the directory list sent to rclone when using fast-list.</p>
<p>Waiting a moderate period of time between attempts (estimated to be approximately 1 hour) and/or not using fast-list both seem to be effective in preventing the problem.</p>
<h3 id="making-your-own-client_id">Making your own client_id</h3>
<p>When you use rclone with Google drive in its default configuration you are using rclones client_id. This is shared between all the rclone users. There is a global rate limit on the number of queries per second that each client_id can do set by Google. rclone already has a high quota and I will continue to make sure it is high enough by contacting Google.</p>
<p>It is strongly recommended to use your own client ID as the default rclone ID is heavily used. If you have multiple services running, it is recommended to use an API key for each service. The default Google quota is 10 transactions per second so it is recommended to stay under that number as if you use more than that, it will cause rclone to rate limit and make things slower.</p>
<p>Here is how to create your own Google Drive client ID for rclone:</p>
<ol type="1">
<li><p>Log into the <a href="https://console.developers.google.com/">Google API Console</a> with your Google account. It doesnt matter what Google account you use. (It need not be the same account as the Google Drive you want to access)</p></li>
<li><p>Select a project or create a new project.</p></li>
<li><p>Under “ENABLE APIS AND SERVICES” search for “Drive”, and enable the then “Google Drive API”.</p></li>
<li><p>Click “Credentials” in the left-side panel (not “Create credentials”, which opens the wizard), then “Create credentials”, then “OAuth client ID”. It will prompt you to set the OAuth consent screen product name, if you havent set one already.</p></li>
<li><p>Choose an application type of “other”, and click “Create”. (the default name is fine)</p></li>
<li><p>It will show you a client ID and client secret. Use these values in rclone config to add a new remote or edit an existing remote.</p></li>
</ol>
<p>(Thanks to <span class="citation" data-cites="balazer">@balazer</span> on github for these instructions.)</p>
<h2 id="http">HTTP</h2>
<p>The HTTP remote is a read only remote for reading files of a webserver. The webserver should provide file listings which rclone will read and turn into a remote. This has been tested with common webservers such as Apache/Nginx/Caddy and will likely work with file listings from most web servers. (If it doesnt then please file an issue, or send a pull request!)</p>
<p>Paths are specified as <code>remote:</code> or <code>remote:path/to/dir</code>.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / FTP Connection
\ &quot;ftp&quot;
7 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
8 / Google Drive
\ &quot;drive&quot;
9 / Hubic
\ &quot;hubic&quot;
10 / Local Disk
\ &quot;local&quot;
11 / Microsoft OneDrive
\ &quot;onedrive&quot;
12 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
13 / SSH/SFTP Connection
\ &quot;sftp&quot;
14 / Yandex Disk
\ &quot;yandex&quot;
15 / http Connection
\ &quot;http&quot;
Storage&gt; http
URL of http host to connect to
Choose a number from below, or type in your own value
1 / Connect to example.com
\ &quot;https://example.com&quot;
url&gt; https://beta.rclone.org
Remote config
--------------------
[remote]
url = https://beta.rclone.org
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y
Current remotes:
Name Type
==== ====
remote http
e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q&gt; q</code></pre>
<p>This remote is called <code>remote</code> and can now be used like this</p>
<p>See all the top level directories</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List the contents of a directory</p>
<pre><code>rclone ls remote:directory</code></pre>
<p>Sync the remote <code>directory</code> to <code>/home/local/directory</code>, deleting any excess files.</p>
<pre><code>rclone sync remote:directory /home/local/directory</code></pre>
<h3 id="read-only">Read only</h3>
<p>This remote is read only - you cant upload files to an HTTP server.</p>
<h3 id="modified-time-5">Modified time</h3>
<p>Most HTTP servers store time accurate to 1 second.</p>
<h3 id="checksum">Checksum</h3>
<p>No checksums are stored.</p>
<h3 id="usage-without-a-config-file">Usage without a config file</h3>
<p>Since the http remote only has one config parameter it is easy to use without a config file:</p>
<pre><code>rclone lsd --http-url https://beta.rclone.org :http:</code></pre>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/http/http.go then run make backenddocs -->
<h3 id="standard-options-11">Standard Options</h3>
<p>Here are the standard options specific to http (http Connection).</p>
<h4 id="http-url">http-url</h4>
<p>URL of http host to connect to</p>
<ul>
<li>Config: url</li>
<li>Env Var: RCLONE_HTTP_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“https://example.com”
<ul>
<li>Connect to example.com</li>
</ul></li>
<li>“https://user:pass@example.com”
<ul>
<li>Connect to example.com using a username and password</li>
</ul></li>
</ul></li>
</ul>
<h3 id="advanced-options-9">Advanced Options</h3>
<p>Here are the advanced options specific to http (http Connection).</p>
<h4 id="http-no-slash">http-no-slash</h4>
<p>Set this if the site doesnt end directories with /</p>
<p>Use this if your target website does not use / on the end of directories.</p>
<p>A / on the end of a path is how rclone normally tells the difference between files and directories. If this flag is set, then rclone will treat all files with Content-Type: text/html as directories and read URLs from them rather than downloading them.</p>
<p>Note that this may cause rclone to confuse genuine HTML files with directories.</p>
<ul>
<li>Config: no_slash</li>
<li>Env Var: RCLONE_HTTP_NO_SLASH</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="hubic">Hubic</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths are specified as <code>remote:container</code> (or <code>remote:</code> for the <code>lsd</code> command.) You may put subdirectories in too, eg <code>remote:container/path/to/dir</code>.</p>
<p>The initial setup for Hubic involves getting a token from Hubic which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>n) New remote
s) Set configuration password
n/s&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
7 / Google Drive
\ &quot;drive&quot;
8 / Hubic
\ &quot;hubic&quot;
9 / Local Disk
\ &quot;local&quot;
10 / Microsoft OneDrive
\ &quot;onedrive&quot;
11 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
12 / SSH/SFTP Connection
\ &quot;sftp&quot;
13 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 8
Hubic Client Id - leave blank normally.
client_id&gt;
Hubic Client Secret - leave blank normally.
client_secret&gt;
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
--------------------
[remote]
client_id =
client_secret =
token = {&quot;access_token&quot;:&quot;XXXXXX&quot;}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>See the <a href="https://rclone.org/remote_setup/">remote setup docs</a> for how to set it up on a machine with no Internet browser available.</p>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from Hubic. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List containers in the top level of your Hubic</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your Hubic</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an Hubic directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<p>If you want the directory to be visible in the official <em>Hubic browser</em>, you need to copy your files to the <code>default</code> directory</p>
<pre><code>rclone copy /home/source remote:default/backup</code></pre>
<h3 id="fast-list-5">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="modified-time-6">Modified time</h3>
<p>The modified time is stored as metadata on the object as <code>X-Object-Meta-Mtime</code> as floating point since the epoch accurate to 1 ns.</p>
<p>This is a de facto standard (used in the official python-swiftclient amongst others) for storing the modification time for an object.</p>
<p>Note that Hubic wraps the Swift backend, so most of the properties of are the same.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/hubic/hubic.go then run make backenddocs -->
<h3 id="standard-options-12">Standard Options</h3>
<p>Here are the standard options specific to hubic (Hubic).</p>
<h4 id="hubic-client-id">hubic-client-id</h4>
<p>Hubic Client Id Leave blank normally.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_HUBIC_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="hubic-client-secret">hubic-client-secret</h4>
<p>Hubic Client Secret Leave blank normally.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_HUBIC_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-10">Advanced Options</h3>
<p>Here are the advanced options specific to hubic (Hubic).</p>
<h4 id="hubic-chunk-size">hubic-chunk-size</h4>
<p>Above this size files will be chunked into a _segments container.</p>
<p>Above this size files will be chunked into a _segments container. The default for this is 5GB which is its maximum value.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_HUBIC_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 5G</li>
</ul>
<h4 id="hubic-no-chunk">hubic-no-chunk</h4>
<p>Dont chunk files during streaming upload.</p>
<p>When doing streaming uploads (eg using rcat or mount) setting this flag will cause the swift backend to not upload chunked files.</p>
<p>This will limit the maximum upload size to 5GB. However non chunked files are easier to deal with and have an MD5SUM.</p>
<p>Rclone will still chunk files bigger than chunk_size when doing normal copy operations.</p>
<ul>
<li>Config: no_chunk</li>
<li>Env Var: RCLONE_HUBIC_NO_CHUNK</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-6">Limitations</h3>
<p>This uses the normal OpenStack Swift mechanism to refresh the Swift API credentials and ignores the expires field returned by the Hubic API.</p>
<p>The Swift API doesnt return a correct MD5SUM for segmented files (Dynamic or Static Large Objects) so rclone wont check or use the MD5SUM for these.</p>
<h2 id="jottacloud">Jottacloud</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>To configure Jottacloud you will need to enter your username and password and select a mountpoint.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; jotta
Type of storage to configure.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
[snip]
14 / JottaCloud
\ &quot;jottacloud&quot;
[snip]
Storage&gt; jottacloud
** See help for jottacloud backend at: https://rclone.org/jottacloud/ **
User Name:
Enter a string value. Press Enter for the default (&quot;&quot;).
user&gt; user@email.tld
Edit advanced config? (y/n)
y) Yes
n) No
y/n&gt; n
Remote config
Do you want to create a machine specific API key?
Rclone has it&#39;s own Jottacloud API KEY which works fine as long as one only uses rclone on a single machine. When you want to use rclone with this account on more than one machine it&#39;s recommended to create a machine specific API key. These keys can NOT be shared between machines.
y) Yes
n) No
y/n&gt; y
Your Jottacloud password is only required during setup and will not be stored.
password:
Do you want to use a non standard device/mountpoint e.g. for accessing files uploaded using the official Jottacloud client?
y) Yes
n) No
y/n&gt; y
Please select the device to use. Normally this will be Jotta
Choose a number from below, or type in an existing value
1 &gt; DESKTOP-3H31129
2 &gt; test1
3 &gt; Jotta
Devices&gt; 3
Please select the mountpoint to user. Normally this will be Archive
Choose a number from below, or type in an existing value
1 &gt; Archive
2 &gt; Shared
3 &gt; Sync
Mountpoints&gt; 1
--------------------
[jotta]
type = jottacloud
user = 0xC4KE@gmail.com
client_id = .....
client_secret = ........
token = {........}
device = Jotta
mountpoint = Archive
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your Jottacloud</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your Jottacloud</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an Jottacloud directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="devices-and-mountpoints">Devices and Mountpoints</h3>
<p>The official Jottacloud client registers a device for each computer you install it on and then creates a mountpoint for each folder you select for Backup. The web interface uses a special device called Jotta for the Archive, Sync and Shared mountpoints. In most cases youll want to use the Jotta/Archive device/mounpoint however if you want to access files uploaded by the official rclone provides the option to select other devices and mountpoints during config.</p>
<h3 id="fast-list-6">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<p>Note that the implementation in Jottacloud always uses only a single API request to get the entire list, so for large folders this could lead to long wait time before the first results are shown.</p>
<h3 id="modified-time-and-hashes-3">Modified time and hashes</h3>
<p>Jottacloud allows modification times to be set on objects accurate to 1 second. These will be used to detect whether objects need syncing or not.</p>
<p>Jottacloud supports MD5 type hashes, so you can use the <code>--checksum</code> flag.</p>
<p>Note that Jottacloud requires the MD5 hash before upload so if the source does not have an MD5 checksum then the file will be cached temporarily on disk (wherever the <code>TMPDIR</code> environment variable points to) before it is uploaded. Small files will be cached in memory - see the <code>--jottacloud-md5-memory-limit</code> flag.</p>
<h3 id="deleting-files-3">Deleting files</h3>
<p>By default rclone will send all files to the trash when deleting files. Due to a lack of API documentation emptying the trash is currently only possible via the Jottacloud website. If deleting permanently is required then use the <code>--jottacloud-hard-delete</code> flag, or set the equivalent environment variable.</p>
<h3 id="versions-2">Versions</h3>
<p>Jottacloud supports file versioning. When rclone uploads a new version of a file it creates a new version of it. Currently rclone only supports retrieving the current version but older versions can be accessed via the Jottacloud Website.</p>
<h3 id="quota-information-1">Quota information</h3>
<p>To view your current quota you can use the <code>rclone about remote:</code> command which will display your usage limit (unless it is unlimited) and the current usage.</p>
<h3 id="device-ids">Device IDs</h3>
<p>Jottacloud requires each device to be registered. Rclone brings such a registration to easily access your account but if you want to use Jottacloud together with rclone on multiple machines you NEED to create a seperate deviceID/deviceSecrect on each machine. You will asked during setting up the remote. Please be aware that this also means that copying the rclone config from one machine to another does NOT work with Jottacloud accounts. You have to create it on each machine.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/jottacloud/jottacloud.go then run make backenddocs -->
<h3 id="standard-options-13">Standard Options</h3>
<p>Here are the standard options specific to jottacloud (JottaCloud).</p>
<h4 id="jottacloud-user">jottacloud-user</h4>
<p>User Name:</p>
<ul>
<li>Config: user</li>
<li>Env Var: RCLONE_JOTTACLOUD_USER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-11">Advanced Options</h3>
<p>Here are the advanced options specific to jottacloud (JottaCloud).</p>
<h4 id="jottacloud-md5-memory-limit">jottacloud-md5-memory-limit</h4>
<p>Files bigger than this will be cached on disk to calculate the MD5 if required.</p>
<ul>
<li>Config: md5_memory_limit</li>
<li>Env Var: RCLONE_JOTTACLOUD_MD5_MEMORY_LIMIT</li>
<li>Type: SizeSuffix</li>
<li>Default: 10M</li>
</ul>
<h4 id="jottacloud-hard-delete">jottacloud-hard-delete</h4>
<p>Delete files permanently rather than putting them into the trash.</p>
<ul>
<li>Config: hard_delete</li>
<li>Env Var: RCLONE_JOTTACLOUD_HARD_DELETE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="jottacloud-unlink">jottacloud-unlink</h4>
<p>Remove existing public link to file/folder with link command rather than creating. Default is false, meaning link command will create or retrieve public link.</p>
<ul>
<li>Config: unlink</li>
<li>Env Var: RCLONE_JOTTACLOUD_UNLINK</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="jottacloud-upload-resume-limit">jottacloud-upload-resume-limit</h4>
<p>Files bigger than this can be resumed if the upload fails.</p>
<ul>
<li>Config: upload_resume_limit</li>
<li>Env Var: RCLONE_JOTTACLOUD_UPLOAD_RESUME_LIMIT</li>
<li>Type: SizeSuffix</li>
<li>Default: 10M</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-7">Limitations</h3>
<p>Note that Jottacloud is case insensitive so you cant have a file called “Hello.doc” and one called “hello.doc”.</p>
<p>There are quite a few characters that cant be in Jottacloud file names. Rclone will map these names to and from an identical looking unicode equivalent. For example if a file has a ? in it will be mapped to instead.</p>
<p>Jottacloud only supports filenames up to 255 characters in length.</p>
<h3 id="troubleshooting">Troubleshooting</h3>
<p>Jottacloud exhibits some inconsistent behaviours regarding deleted files and folders which may cause Copy, Move and DirMove operations to previously deleted paths to fail. Emptying the trash should help in such cases.</p>
<h2 id="koofr">Koofr</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>The initial setup for Koofr involves creating an application password for rclone. You can do that by opening the Koofr <a href="https://app.koofr.net/app/admin/preferences/password">web application</a>, giving the password a nice name like <code>rclone</code> and clicking on generate.</p>
<p>Here is an example of how to make a remote called <code>koofr</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; koofr
Type of storage to configure.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
1 / A stackable unification remote, which can appear to merge the contents of several remotes
\ &quot;union&quot;
2 / Alias for an existing remote
\ &quot;alias&quot;
3 / Amazon Drive
\ &quot;amazon cloud drive&quot;
4 / Amazon S3 Compliant Storage Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)
\ &quot;s3&quot;
5 / Backblaze B2
\ &quot;b2&quot;
6 / Box
\ &quot;box&quot;
7 / Cache a remote
\ &quot;cache&quot;
8 / Dropbox
\ &quot;dropbox&quot;
9 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
10 / FTP Connection
\ &quot;ftp&quot;
11 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
12 / Google Drive
\ &quot;drive&quot;
13 / Hubic
\ &quot;hubic&quot;
14 / JottaCloud
\ &quot;jottacloud&quot;
15 / Koofr
\ &quot;koofr&quot;
16 / Local Disk
\ &quot;local&quot;
17 / Mega
\ &quot;mega&quot;
18 / Microsoft Azure Blob Storage
\ &quot;azureblob&quot;
19 / Microsoft OneDrive
\ &quot;onedrive&quot;
20 / OpenDrive
\ &quot;opendrive&quot;
21 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
22 / Pcloud
\ &quot;pcloud&quot;
23 / QingCloud Object Storage
\ &quot;qingstor&quot;
24 / SSH/SFTP Connection
\ &quot;sftp&quot;
25 / Webdav
\ &quot;webdav&quot;
26 / Yandex Disk
\ &quot;yandex&quot;
27 / http Connection
\ &quot;http&quot;
Storage&gt; koofr
** See help for koofr backend at: https://rclone.org/koofr/ **
Your Koofr user name
Enter a string value. Press Enter for the default (&quot;&quot;).
user&gt; USER@NAME
Your Koofr password for rclone (generate one at https://app.koofr.net/app/admin/preferences/password)
y) Yes type in my own password
g) Generate random password
y/g&gt; y
Enter the password:
password:
Confirm the password:
password:
Edit advanced config? (y/n)
y) Yes
n) No
y/n&gt; n
Remote config
--------------------
[koofr]
type = koofr
baseurl = https://app.koofr.net
user = USER@NAME
password = *** ENCRYPTED ***
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>You can choose to edit advanced config in order to enter your own service URL if you use an on-premise or white label Koofr instance, or choose an alternative mount instead of your primary storage.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your Koofr</p>
<pre><code>rclone lsd koofr:</code></pre>
<p>List all the files in your Koofr</p>
<pre><code>rclone ls koofr:</code></pre>
<p>To copy a local directory to an Koofr directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/koofr/koofr.go then run make backenddocs -->
<h3 id="standard-options-14">Standard Options</h3>
<p>Here are the standard options specific to koofr (Koofr).</p>
<h4 id="koofr-user">koofr-user</h4>
<p>Your Koofr user name</p>
<ul>
<li>Config: user</li>
<li>Env Var: RCLONE_KOOFR_USER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="koofr-password">koofr-password</h4>
<p>Your Koofr password for rclone (generate one at https://app.koofr.net/app/admin/preferences/password)</p>
<ul>
<li>Config: password</li>
<li>Env Var: RCLONE_KOOFR_PASSWORD</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-12">Advanced Options</h3>
<p>Here are the advanced options specific to koofr (Koofr).</p>
<h4 id="koofr-endpoint">koofr-endpoint</h4>
<p>The Koofr API endpoint to use</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_KOOFR_ENDPOINT</li>
<li>Type: string</li>
<li>Default: “https://app.koofr.net”</li>
</ul>
<h4 id="koofr-mountid">koofr-mountid</h4>
<p>Mount ID of the mount to use. If omitted, the primary mount is used.</p>
<ul>
<li>Config: mountid</li>
<li>Env Var: RCLONE_KOOFR_MOUNTID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-8">Limitations</h3>
<p>Note that Koofr is case insensitive so you cant have a file called “Hello.doc” and one called “hello.doc”.</p>
<h2 id="mega">Mega</h2>
<p><a href="https://mega.nz/">Mega</a> is a cloud storage and file hosting service known for its security feature where all files are encrypted locally before they are uploaded. This prevents anyone (including employees of Mega) from accessing the files without knowledge of the key used for encryption.</p>
<p>This is an rclone backend for Mega which supports the file transfer features of Mega using the same client side encryption.</p>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Alias for an existing remote
\ &quot;alias&quot;
[snip]
14 / Mega
\ &quot;mega&quot;
[snip]
23 / http Connection
\ &quot;http&quot;
Storage&gt; mega
User name
user&gt; you@example.com
Password.
y) Yes type in my own password
g) Generate random password
n) No leave this optional password blank
y/g/n&gt; y
Enter the password:
password:
Confirm the password:
password:
Remote config
--------------------
[remote]
type = mega
user = you@example.com
pass = *** ENCRYPTED ***
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p><strong>NOTE:</strong> The encryption keys need to have been already generated after a regular login via the browser, otherwise attempting to use the credentials in <code>rclone</code> will fail.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your Mega</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your Mega</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an Mega directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="modified-time-and-hashes-4">Modified time and hashes</h3>
<p>Mega does not support modification times or hashes yet.</p>
<h3 id="duplicated-files-1">Duplicated files</h3>
<p>Mega can have two files with exactly the same name and path (unlike a normal file system).</p>
<p>Duplicated files cause problems with the syncing and you will see messages in the log about duplicates.</p>
<p>Use <code>rclone dedupe</code> to fix duplicated files.</p>
<h3 id="failure-to-log-in">Failure to log-in</h3>
<p>Mega remotes seem to get blocked (reject logins) under “heavy use”. We havent worked out the exact blocking rules but it seems to be related to fast paced, sucessive rclone commands.</p>
<p>For example, executing this command 90 times in a row <code>rclone link remote:file</code> will cause the remote to become “blocked”. This is not an abnormal situation, for example if you wish to get the public links of a directory with hundred of files… After more or less a week, the remote will remote accept rclone logins normally again.</p>
<p>You can mitigate this issue by mounting the remote it with <code>rclone mount</code>. This will log-in when mounting and a log-out when unmounting only. You can also run <code>rclone rcd</code> and then use <code>rclone rc</code> to run the commands over the API to avoid logging in each time.</p>
<p>Rclone does not currently close mega sessions (you can see them in the web interface), however closing the sessions does not solve the issue.</p>
<p>If you space rclone commands by 3 seconds it will avoid blocking the remote. We havent identified the exact blocking rules, so perhaps one could execute the command 80 times without waiting and avoid blocking by waiting 3 seconds, then continuing…</p>
<p>Note that this has been observed by trial and error and might not be set in stone.</p>
<p>Other tools seem not to produce this blocking effect, as they use a different working approach (state-based, using sessionIDs instead of log-in) which isnt compatible with the current stateless rclone approach.</p>
<p>Note that once blocked, the use of other tools (such as megacmd) is not a sure workaround: following megacmd login times have been observed in sucession for blocked remote: 7 minutes, 20 min, 30min, 30 min, 30min. Web access looks unaffected though.</p>
<p>Investigation is continuing in relation to workarounds based on timeouts, pacers, retrials and tpslimits - if you discover something relevant, please post on the forum.</p>
<p>So, if rclone was working nicely and suddenly you are unable to log-in and you are sure the user and the password are correct, likely you have got the remote blocked for a while.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/mega/mega.go then run make backenddocs -->
<h3 id="standard-options-15">Standard Options</h3>
<p>Here are the standard options specific to mega (Mega).</p>
<h4 id="mega-user">mega-user</h4>
<p>User name</p>
<ul>
<li>Config: user</li>
<li>Env Var: RCLONE_MEGA_USER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="mega-pass">mega-pass</h4>
<p>Password.</p>
<ul>
<li>Config: pass</li>
<li>Env Var: RCLONE_MEGA_PASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-13">Advanced Options</h3>
<p>Here are the advanced options specific to mega (Mega).</p>
<h4 id="mega-debug">mega-debug</h4>
<p>Output more debug from Mega.</p>
<p>If this flag is set (along with -vv) it will print further debugging information from the mega backend.</p>
<ul>
<li>Config: debug</li>
<li>Env Var: RCLONE_MEGA_DEBUG</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="mega-hard-delete">mega-hard-delete</h4>
<p>Delete files permanently rather than putting them into the trash.</p>
<p>Normally the mega backend will put all deletions into the trash rather than permanently deleting them. If you specify this then rclone will permanently delete objects instead.</p>
<ul>
<li>Config: hard_delete</li>
<li>Env Var: RCLONE_MEGA_HARD_DELETE</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-9">Limitations</h3>
<p>This backend uses the <a href="https://github.com/t3rm1n4l/go-mega">go-mega go library</a> which is an opensource go library implementing the Mega API. There doesnt appear to be any documentation for the mega protocol beyond the <a href="https://github.com/meganz/sdk">mega C++ SDK</a> source code so there are likely quite a few errors still remaining in this library.</p>
<p>Mega allows duplicate files which may confuse rclone.</p>
<h2 id="microsoft-azure-blob-storage">Microsoft Azure Blob Storage</h2>
<p>Paths are specified as <code>remote:container</code> (or <code>remote:</code> for the <code>lsd</code> command.) You may put subdirectories in too, eg <code>remote:container/path/to/dir</code>.</p>
<p>Here is an example of making a Microsoft Azure Blob Storage configuration. For a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Box
\ &quot;box&quot;
5 / Dropbox
\ &quot;dropbox&quot;
6 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
7 / FTP Connection
\ &quot;ftp&quot;
8 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
9 / Google Drive
\ &quot;drive&quot;
10 / Hubic
\ &quot;hubic&quot;
11 / Local Disk
\ &quot;local&quot;
12 / Microsoft Azure Blob Storage
\ &quot;azureblob&quot;
13 / Microsoft OneDrive
\ &quot;onedrive&quot;
14 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
15 / SSH/SFTP Connection
\ &quot;sftp&quot;
16 / Yandex Disk
\ &quot;yandex&quot;
17 / http Connection
\ &quot;http&quot;
Storage&gt; azureblob
Storage Account Name
account&gt; account_name
Storage Account Key
key&gt; base64encodedkey==
Endpoint for the service - leave blank normally.
endpoint&gt;
Remote config
--------------------
[remote]
account = account_name
key = base64encodedkey==
endpoint =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>See all containers</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new container</p>
<pre><code>rclone mkdir remote:container</code></pre>
<p>List the contents of a container</p>
<pre><code>rclone ls remote:container</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote container, deleting any excess files in the container.</p>
<pre><code>rclone sync /home/local/directory remote:container</code></pre>
<h3 id="fast-list-7">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="modified-time-7">Modified time</h3>
<p>The modified time is stored as metadata on the object with the <code>mtime</code> key. It is stored using RFC3339 Format time with nanosecond precision. The metadata is supplied during directory listings so there is no overhead to using it.</p>
<h3 id="hashes">Hashes</h3>
<p>MD5 hashes are stored with blobs. However blobs that were uploaded in chunks only have an MD5 if the source remote was capable of MD5 hashes, eg the local disk.</p>
<h3 id="authenticating-with-azure-blob-storage">Authenticating with Azure Blob Storage</h3>
<p>Rclone has 3 ways of authenticating with Azure Blob Storage:</p>
<h4 id="account-and-key">Account and Key</h4>
<p>This is the most straight forward and least flexible way. Just fill in the <code>account</code> and <code>key</code> lines and leave the rest blank.</p>
<h4 id="sas-url">SAS URL</h4>
<p>This can be an account level SAS URL or container level SAS URL</p>
<p>To use it leave <code>account</code>, <code>key</code> blank and fill in <code>sas_url</code>.</p>
<p>Account level SAS URL or container level SAS URL can be obtained from Azure portal or Azure Storage Explorer. To get a container level SAS URL right click on a container in the Azure Blob explorer in the Azure portal.</p>
<p>If You use container level SAS URL, rclone operations are permitted only on particular container, eg</p>
<pre><code>rclone ls azureblob:container or rclone ls azureblob:</code></pre>
<p>Since container name already exists in SAS URL, you can leave it empty as well.</p>
<p>However these will not work</p>
<pre><code>rclone lsd azureblob:
rclone ls azureblob:othercontainer</code></pre>
<p>This would be useful for temporarily allowing third parties access to a single container or putting credentials into an untrusted environment.</p>
<h3 id="multipart-uploads-1">Multipart uploads</h3>
<p>Rclone supports multipart uploads with Azure Blob storage. Files bigger than 256MB will be uploaded using chunked upload by default.</p>
<p>The files will be uploaded in parallel in 4MB chunks (by default). Note that these chunks are buffered in memory and there may be up to <code>--transfers</code> of them being uploaded at once.</p>
<p>Files cant be split into more than 50,000 chunks so by default, so the largest file that can be uploaded with 4MB chunk size is 195GB. Above this rclone will double the chunk size until it creates less than 50,000 chunks. By default this will mean a maximum file size of 3.2TB can be uploaded. This can be raised to 5TB using <code>--azureblob-chunk-size 100M</code>.</p>
<p>Note that rclone doesnt commit the block list until the end of the upload which means that there is a limit of 9.5TB of multipart uploads in progress as Azure wont allow more than that amount of uncommitted blocks.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/azureblob/azureblob.go then run make backenddocs -->
<h3 id="standard-options-16">Standard Options</h3>
<p>Here are the standard options specific to azureblob (Microsoft Azure Blob Storage).</p>
<h4 id="azureblob-account">azureblob-account</h4>
<p>Storage Account Name (leave blank to use connection string or SAS URL)</p>
<ul>
<li>Config: account</li>
<li>Env Var: RCLONE_AZUREBLOB_ACCOUNT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="azureblob-key">azureblob-key</h4>
<p>Storage Account Key (leave blank to use connection string or SAS URL)</p>
<ul>
<li>Config: key</li>
<li>Env Var: RCLONE_AZUREBLOB_KEY</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="azureblob-sas-url">azureblob-sas-url</h4>
<p>SAS URL for container level access only (leave blank if using account/key or connection string)</p>
<ul>
<li>Config: sas_url</li>
<li>Env Var: RCLONE_AZUREBLOB_SAS_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-14">Advanced Options</h3>
<p>Here are the advanced options specific to azureblob (Microsoft Azure Blob Storage).</p>
<h4 id="azureblob-endpoint">azureblob-endpoint</h4>
<p>Endpoint for the service Leave blank normally.</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_AZUREBLOB_ENDPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="azureblob-upload-cutoff">azureblob-upload-cutoff</h4>
<p>Cutoff for switching to chunked upload (&lt;= 256MB).</p>
<ul>
<li>Config: upload_cutoff</li>
<li>Env Var: RCLONE_AZUREBLOB_UPLOAD_CUTOFF</li>
<li>Type: SizeSuffix</li>
<li>Default: 256M</li>
</ul>
<h4 id="azureblob-chunk-size">azureblob-chunk-size</h4>
<p>Upload chunk size (&lt;= 100MB).</p>
<p>Note that this is stored in memory and there may be up to “transfers” chunks stored at once in memory.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_AZUREBLOB_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 4M</li>
</ul>
<h4 id="azureblob-list-chunk">azureblob-list-chunk</h4>
<p>Size of blob list.</p>
<p>This sets the number of blobs requested in each listing chunk. Default is the maximum, 5000. “List blobs” requests are permitted 2 minutes per megabyte to complete. If an operation is taking longer than 2 minutes per megabyte on average, it will time out ( <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/setting-timeouts-for-blob-service-operations#exceptions-to-default-timeout-interval">source</a> ). This can be used to limit the number of blobs items to return, to avoid the time out.</p>
<ul>
<li>Config: list_chunk</li>
<li>Env Var: RCLONE_AZUREBLOB_LIST_CHUNK</li>
<li>Type: int</li>
<li>Default: 5000</li>
</ul>
<h4 id="azureblob-access-tier">azureblob-access-tier</h4>
<p>Access tier of blob: hot, cool or archive.</p>
<p>Archived blobs can be restored by setting access tier to hot or cool. Leave blank if you intend to use default access tier, which is set at account level</p>
<p>If there is no “access tier” specified, rclone doesnt apply any tier. rclone performs “Set Tier” operation on blobs while uploading, if objects are not modified, specifying “access tier” to new one will have no effect. If blobs are in “archive tier” at remote, trying to perform data transfer operations from remote will not be allowed. User should first restore by tiering blob to “Hot” or “Cool”.</p>
<ul>
<li>Config: access_tier</li>
<li>Env Var: RCLONE_AZUREBLOB_ACCESS_TIER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-10">Limitations</h3>
<p>MD5 sums are only uploaded with chunked files if the source has an MD5 sum. This will always be the case for a local to azure copy.</p>
<h2 id="microsoft-onedrive">Microsoft OneDrive</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>The initial setup for OneDrive involves getting a token from Microsoft which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q&gt; n
name&gt; remote
Type of storage to configure.
Enter a string value. Press Enter for the default (&quot;&quot;).
Choose a number from below, or type in your own value
...
18 / Microsoft OneDrive
\ &quot;onedrive&quot;
...
Storage&gt; 18
Microsoft App Client Id
Leave blank normally.
Enter a string value. Press Enter for the default (&quot;&quot;).
client_id&gt;
Microsoft App Client Secret
Leave blank normally.
Enter a string value. Press Enter for the default (&quot;&quot;).
client_secret&gt;
Edit advanced config? (y/n)
y) Yes
n) No
y/n&gt; n
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
Choose a number from below, or type in an existing value
1 / OneDrive Personal or Business
\ &quot;onedrive&quot;
2 / Sharepoint site
\ &quot;sharepoint&quot;
3 / Type in driveID
\ &quot;driveid&quot;
4 / Type in SiteID
\ &quot;siteid&quot;
5 / Search a Sharepoint site
\ &quot;search&quot;
Your choice&gt; 1
Found 1 drives, please select the one you want to use:
0: OneDrive (business) id=b!Eqwertyuiopasdfghjklzxcvbnm-7mnbvcxzlkjhgfdsapoiuytrewqk
Chose drive to use:&gt; 0
Found drive &#39;root&#39; of type &#39;business&#39;, URL: https://org-my.sharepoint.com/personal/you/Documents
Is that okay?
y) Yes
n) No
y/n&gt; y
--------------------
[remote]
type = onedrive
token = {&quot;access_token&quot;:&quot;youraccesstoken&quot;,&quot;token_type&quot;:&quot;Bearer&quot;,&quot;refresh_token&quot;:&quot;yourrefreshtoken&quot;,&quot;expiry&quot;:&quot;2018-08-26T22:39:52.486512262+08:00&quot;}
drive_id = b!Eqwertyuiopasdfghjklzxcvbnm-7mnbvcxzlkjhgfdsapoiuytrewqk
drive_type = business
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>See the <a href="https://rclone.org/remote_setup/">remote setup docs</a> for how to set it up on a machine with no Internet browser available.</p>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from Microsoft. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your OneDrive</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your OneDrive</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an OneDrive directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="getting-your-own-client-id-and-key">Getting your own Client ID and Key</h3>
<p>rclone uses a pair of Client ID and Key shared by all rclone users when performing requests by default. If you are having problems with them (E.g., seeing a lot of throttling), you can get your own Client ID and Key by following the steps below:</p>
<ol type="1">
<li>Open https://apps.dev.microsoft.com/#/appList, then click <code>Add an app</code> (Choose <code>Converged applications</code> if applicable)</li>
<li>Enter a name for your app, and click continue. Copy and keep the <code>Application Id</code> under the app name for later use.</li>
<li>Under section <code>Application Secrets</code>, click <code>Generate New Password</code>. Copy and keep that password for later use.</li>
<li>Under section <code>Platforms</code>, click <code>Add platform</code>, then <code>Web</code>. Enter <code>http://localhost:53682/</code> in <code>Redirect URLs</code>.</li>
<li>Under section <code>Microsoft Graph Permissions</code>, <code>Add</code> these <code>delegated permissions</code>: <code>Files.Read</code>, <code>Files.ReadWrite</code>, <code>Files.Read.All</code>, <code>Files.ReadWrite.All</code>, <code>offline_access</code>, <code>User.Read</code>.</li>
<li>Scroll to the bottom and click <code>Save</code>.</li>
</ol>
<p>Now the application is complete. Run <code>rclone config</code> to create or edit a OneDrive remote. Supply the app ID and password as Client ID and Secret, respectively. rclone will walk you through the remaining steps.</p>
<h3 id="modified-time-and-hashes-5">Modified time and hashes</h3>
<p>OneDrive allows modification times to be set on objects accurate to 1 second. These will be used to detect whether objects need syncing or not.</p>
<p>OneDrive personal supports SHA1 type hashes. OneDrive for business and Sharepoint Server support <a href="https://docs.microsoft.com/en-us/onedrive/developer/code-snippets/quickxorhash">QuickXorHash</a>.</p>
<p>For all types of OneDrive you can use the <code>--checksum</code> flag.</p>
<h3 id="deleting-files-4">Deleting files</h3>
<p>Any files you delete with rclone will end up in the trash. Microsoft doesnt provide an API to permanently delete files, nor to empty the trash, so you will have to do that with one of Microsofts apps or via the OneDrive website.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/onedrive/onedrive.go then run make backenddocs -->
<h3 id="standard-options-17">Standard Options</h3>
<p>Here are the standard options specific to onedrive (Microsoft OneDrive).</p>
<h4 id="onedrive-client-id">onedrive-client-id</h4>
<p>Microsoft App Client Id Leave blank normally.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_ONEDRIVE_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="onedrive-client-secret">onedrive-client-secret</h4>
<p>Microsoft App Client Secret Leave blank normally.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_ONEDRIVE_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-15">Advanced Options</h3>
<p>Here are the advanced options specific to onedrive (Microsoft OneDrive).</p>
<h4 id="onedrive-chunk-size">onedrive-chunk-size</h4>
<p>Chunk size to upload files with - must be multiple of 320k.</p>
<p>Above this size files will be chunked - must be multiple of 320k. Note that the chunks will be buffered into memory.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_ONEDRIVE_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 10M</li>
</ul>
<h4 id="onedrive-drive-id">onedrive-drive-id</h4>
<p>The ID of the drive to use</p>
<ul>
<li>Config: drive_id</li>
<li>Env Var: RCLONE_ONEDRIVE_DRIVE_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="onedrive-drive-type">onedrive-drive-type</h4>
<p>The type of the drive ( personal | business | documentLibrary )</p>
<ul>
<li>Config: drive_type</li>
<li>Env Var: RCLONE_ONEDRIVE_DRIVE_TYPE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="onedrive-expose-onenote-files">onedrive-expose-onenote-files</h4>
<p>Set to make OneNote files show up in directory listings.</p>
<p>By default rclone will hide OneNote files in directory listings because operations like “Open” and “Update” wont work on them. But this behaviour may also prevent you from deleting them. If you want to delete OneNote files or otherwise want them to show up in directory listing, set this option.</p>
<ul>
<li>Config: expose_onenote_files</li>
<li>Env Var: RCLONE_ONEDRIVE_EXPOSE_ONENOTE_FILES</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-11">Limitations</h3>
<p>Note that OneDrive is case insensitive so you cant have a file called “Hello.doc” and one called “hello.doc”.</p>
<p>There are quite a few characters that cant be in OneDrive file names. These cant occur on Windows platforms, but on non-Windows platforms they are common. Rclone will map these names to and from an identical looking unicode equivalent. For example if a file has a <code>?</code> in it will be mapped to <code></code> instead.</p>
<p>The largest allowed file sizes are 15GB for OneDrive for Business and 35GB for OneDrive Personal (Updated 4 Jan 2019).</p>
<p>The entire path, including the file name, must contain fewer than 400 characters for OneDrive, OneDrive for Business and SharePoint Online. If you are encrypting file and folder names with rclone, you may want to pay attention to this limitation because the encrypted names are typically longer than the original ones.</p>
<p>OneDrive seems to be OK with at least 50,000 files in a folder, but at 100,000 rclone will get errors listing the directory like <code>couldnt list files: UnknownError:</code>. See <a href="https://github.com/rclone/rclone/issues/2707">#2707</a> for more info.</p>
<p>An official document about the limitations for different types of OneDrive can be found <a href="https://support.office.com/en-us/article/invalid-file-names-and-file-types-in-onedrive-onedrive-for-business-and-sharepoint-64883a5d-228e-48f5-b3d2-eb39e07630fa">here</a>.</p>
<h3 id="versioning-issue">Versioning issue</h3>
<p>Every change in OneDrive causes the service to create a new version. This counts against a users quota. For example changing the modification time of a file creates a second version, so the file is using twice the space.</p>
<p>The <code>copy</code> is the only rclone command affected by this as we copy the file and then afterwards set the modification time to match the source file.</p>
<p><strong>Note</strong>: Starting October 2018, users will no longer be able to disable versioning by default. This is because Microsoft has brought an <a href="https://techcommunity.microsoft.com/t5/Microsoft-OneDrive-Blog/New-Updates-to-OneDrive-and-SharePoint-Team-Site-Versioning/ba-p/204390">update</a> to the mechanism. To change this new default setting, a PowerShell command is required to be run by a SharePoint admin. If you are an admin, you can run these commands in PowerShell to change that setting:</p>
<ol type="1">
<li><code>Install-Module -Name Microsoft.Online.SharePoint.PowerShell</code> (in case you havent installed this already)</li>
<li><code>Import-Module Microsoft.Online.SharePoint.PowerShell -DisableNameChecking</code></li>
<li><code>Connect-SPOService -Url https://YOURSITE-admin.sharepoint.com -Credential YOU@YOURSITE.COM</code> (replacing <code>YOURSITE</code>, <code>YOU</code>, <code>YOURSITE.COM</code> with the actual values; this will prompt for your credentials)</li>
<li><code>Set-SPOTenant -EnableMinimumVersionRequirement $False</code></li>
<li><code>Disconnect-SPOService</code> (to disconnect from the server)</li>
</ol>
<p><em>Below are the steps for normal users to disable versioning. If you dont see the “No Versioning” option, make sure the above requirements are met.</em></p>
<p>User <a href="https://github.com/Weropol">Weropol</a> has found a method to disable versioning on OneDrive</p>
<ol type="1">
<li>Open the settings menu by clicking on the gear symbol at the top of the OneDrive Business page.</li>
<li>Click Site settings.</li>
<li>Once on the Site settings page, navigate to Site Administration &gt; Site libraries and lists.</li>
<li>Click Customize “Documents”.</li>
<li>Click General Settings &gt; Versioning Settings.</li>
<li>Under Document Version History select the option No versioning. Note: This will disable the creation of new file versions, but will not remove any previous versions. Your documents are safe.</li>
<li>Apply the changes by clicking OK.</li>
<li>Use rclone to upload or modify files. (I also use the no-update-modtime flag)</li>
<li>Restore the versioning settings after using rclone. (Optional)</li>
</ol>
<h3 id="troubleshooting-1">Troubleshooting</h3>
<pre><code>Error: access_denied
Code: AADSTS65005
Description: Using application &#39;rclone&#39; is currently not supported for your organization [YOUR_ORGANIZATION] because it is in an unmanaged state. An administrator needs to claim ownership of the company by DNS validation of [YOUR_ORGANIZATION] before the application rclone can be provisioned.</code></pre>
<p>This means that rclone cant use the OneDrive for Business API with your account. You cant do much about it, maybe write an email to your admins.</p>
<p>However, there are other ways to interact with your OneDrive account. Have a look at the webdav backend: https://rclone.org/webdav/#sharepoint</p>
<pre><code>Error: invalid_grant
Code: AADSTS50076
Description: Due to a configuration change made by your administrator, or because you moved to a new location, you must use multi-factor authentication to access &#39;...&#39;.</code></pre>
<p>If you see the error above after enabling multi-factor authentication for your account, you can fix it by refreshing your OAuth refresh token. To do that, run <code>rclone config</code>, and choose to edit your OneDrive backend. Then, you dont need to actually make any changes until you reach this question: <code>Already have a token - refresh?</code>. For this question, answer <code>y</code> and go through the process to refresh your token, just like the first time the backend is configured. After this, rclone should work again for this backend.</p>
<h2 id="opendrive">OpenDrive</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>n) New remote
d) Delete remote
q) Quit config
e/n/d/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
7 / Google Drive
\ &quot;drive&quot;
8 / Hubic
\ &quot;hubic&quot;
9 / Local Disk
\ &quot;local&quot;
10 / OpenDrive
\ &quot;opendrive&quot;
11 / Microsoft OneDrive
\ &quot;onedrive&quot;
12 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
13 / SSH/SFTP Connection
\ &quot;sftp&quot;
14 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 10
Username
username&gt;
Password
y) Yes type in my own password
g) Generate random password
y/g&gt; y
Enter the password:
password:
Confirm the password:
password:
--------------------
[remote]
username =
password = *** ENCRYPTED ***
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>List directories in top level of your OpenDrive</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your OpenDrive</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an OpenDrive directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="modified-time-and-md5sums-1">Modified time and MD5SUMs</h3>
<p>OpenDrive allows modification times to be set on objects accurate to 1 second. These will be used to detect whether objects need syncing or not.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/opendrive/opendrive.go then run make backenddocs -->
<h3 id="standard-options-18">Standard Options</h3>
<p>Here are the standard options specific to opendrive (OpenDrive).</p>
<h4 id="opendrive-username">opendrive-username</h4>
<p>Username</p>
<ul>
<li>Config: username</li>
<li>Env Var: RCLONE_OPENDRIVE_USERNAME</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="opendrive-password">opendrive-password</h4>
<p>Password.</p>
<ul>
<li>Config: password</li>
<li>Env Var: RCLONE_OPENDRIVE_PASSWORD</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-12">Limitations</h3>
<p>Note that OpenDrive is case insensitive so you cant have a file called “Hello.doc” and one called “hello.doc”.</p>
<p>There are quite a few characters that cant be in OpenDrive file names. These cant occur on Windows platforms, but on non-Windows platforms they are common. Rclone will map these names to and from an identical looking unicode equivalent. For example if a file has a <code>?</code> in it will be mapped to <code></code> instead.</p>
<h2 id="qingstor">QingStor</h2>
<p>Paths are specified as <code>remote:bucket</code> (or <code>remote:</code> for the <code>lsd</code> command.) You may put subdirectories in too, eg <code>remote:bucket/path/to/dir</code>.</p>
<p>Here is an example of making an QingStor configuration. First run</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process.</p>
<pre><code>No remotes found - make a new one
n) New remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
n/r/c/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / FTP Connection
\ &quot;ftp&quot;
7 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
8 / Google Drive
\ &quot;drive&quot;
9 / Hubic
\ &quot;hubic&quot;
10 / Local Disk
\ &quot;local&quot;
11 / Microsoft OneDrive
\ &quot;onedrive&quot;
12 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
13 / QingStor Object Storage
\ &quot;qingstor&quot;
14 / SSH/SFTP Connection
\ &quot;sftp&quot;
15 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 13
Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.
Choose a number from below, or type in your own value
1 / Enter QingStor credentials in the next step
\ &quot;false&quot;
2 / Get QingStor credentials from the environment (env vars or IAM)
\ &quot;true&quot;
env_auth&gt; 1
QingStor Access Key ID - leave blank for anonymous access or runtime credentials.
access_key_id&gt; access_key
QingStor Secret Access Key (password) - leave blank for anonymous access or runtime credentials.
secret_access_key&gt; secret_key
Enter a endpoint URL to connection QingStor API.
Leave blank will use the default value &quot;https://qingstor.com:443&quot;
endpoint&gt;
Zone connect to. Default is &quot;pek3a&quot;.
Choose a number from below, or type in your own value
/ The Beijing (China) Three Zone
1 | Needs location constraint pek3a.
\ &quot;pek3a&quot;
/ The Shanghai (China) First Zone
2 | Needs location constraint sh1a.
\ &quot;sh1a&quot;
zone&gt; 1
Number of connnection retry.
Leave blank will use the default value &quot;3&quot;.
connection_retries&gt;
Remote config
--------------------
[remote]
env_auth = false
access_key_id = access_key
secret_access_key = secret_key
endpoint =
zone = pek3a
connection_retries =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>This remote is called <code>remote</code> and can now be used like this</p>
<p>See all buckets</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new bucket</p>
<pre><code>rclone mkdir remote:bucket</code></pre>
<p>List the contents of a bucket</p>
<pre><code>rclone ls remote:bucket</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote bucket, deleting any excess files in the bucket.</p>
<pre><code>rclone sync /home/local/directory remote:bucket</code></pre>
<h3 id="fast-list-8">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="multipart-uploads-2">Multipart uploads</h3>
<p>rclone supports multipart uploads with QingStor which means that it can upload files bigger than 5GB. Note that files uploaded with multipart upload dont have an MD5SUM.</p>
<h3 id="buckets-and-zone">Buckets and Zone</h3>
<p>With QingStor you can list buckets (<code>rclone lsd</code>) using any zone, but you can only access the content of a bucket from the zone it was created in. If you attempt to access a bucket from the wrong zone, you will get an error, <code>incorrect zone, the bucket is not in 'XXX' zone</code>.</p>
<h3 id="authentication-5">Authentication</h3>
<p>There are two ways to supply <code>rclone</code> with a set of QingStor credentials. In order of precedence:</p>
<ul>
<li>Directly in the rclone configuration file (as configured by <code>rclone config</code>)
<ul>
<li>set <code>access_key_id</code> and <code>secret_access_key</code></li>
</ul></li>
<li>Runtime configuration:
<ul>
<li>set <code>env_auth</code> to <code>true</code> in the config file</li>
<li>Exporting the following environment variables before running <code>rclone</code>
<ul>
<li>Access Key ID: <code>QS_ACCESS_KEY_ID</code> or <code>QS_ACCESS_KEY</code></li>
<li>Secret Access Key: <code>QS_SECRET_ACCESS_KEY</code> or <code>QS_SECRET_KEY</code></li>
</ul></li>
</ul></li>
</ul>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/qingstor/qingstor.go then run make backenddocs -->
<h3 id="standard-options-19">Standard Options</h3>
<p>Here are the standard options specific to qingstor (QingCloud Object Storage).</p>
<h4 id="qingstor-env-auth">qingstor-env-auth</h4>
<p>Get QingStor credentials from runtime. Only applies if access_key_id and secret_access_key is blank.</p>
<ul>
<li>Config: env_auth</li>
<li>Env Var: RCLONE_QINGSTOR_ENV_AUTH</li>
<li>Type: bool</li>
<li>Default: false</li>
<li>Examples:
<ul>
<li>“false”
<ul>
<li>Enter QingStor credentials in the next step</li>
</ul></li>
<li>“true”
<ul>
<li>Get QingStor credentials from the environment (env vars or IAM)</li>
</ul></li>
</ul></li>
</ul>
<h4 id="qingstor-access-key-id">qingstor-access-key-id</h4>
<p>QingStor Access Key ID Leave blank for anonymous access or runtime credentials.</p>
<ul>
<li>Config: access_key_id</li>
<li>Env Var: RCLONE_QINGSTOR_ACCESS_KEY_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="qingstor-secret-access-key">qingstor-secret-access-key</h4>
<p>QingStor Secret Access Key (password) Leave blank for anonymous access or runtime credentials.</p>
<ul>
<li>Config: secret_access_key</li>
<li>Env Var: RCLONE_QINGSTOR_SECRET_ACCESS_KEY</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="qingstor-endpoint">qingstor-endpoint</h4>
<p>Enter a endpoint URL to connection QingStor API. Leave blank will use the default value “https://qingstor.com:443”</p>
<ul>
<li>Config: endpoint</li>
<li>Env Var: RCLONE_QINGSTOR_ENDPOINT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="qingstor-zone">qingstor-zone</h4>
<p>Zone to connect to. Default is “pek3a”.</p>
<ul>
<li>Config: zone</li>
<li>Env Var: RCLONE_QINGSTOR_ZONE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“pek3a”
<ul>
<li>The Beijing (China) Three Zone</li>
<li>Needs location constraint pek3a.</li>
</ul></li>
<li>“sh1a”
<ul>
<li>The Shanghai (China) First Zone</li>
<li>Needs location constraint sh1a.</li>
</ul></li>
<li>“gd2a”
<ul>
<li>The Guangdong (China) Second Zone</li>
<li>Needs location constraint gd2a.</li>
</ul></li>
</ul></li>
</ul>
<h3 id="advanced-options-16">Advanced Options</h3>
<p>Here are the advanced options specific to qingstor (QingCloud Object Storage).</p>
<h4 id="qingstor-connection-retries">qingstor-connection-retries</h4>
<p>Number of connection retries.</p>
<ul>
<li>Config: connection_retries</li>
<li>Env Var: RCLONE_QINGSTOR_CONNECTION_RETRIES</li>
<li>Type: int</li>
<li>Default: 3</li>
</ul>
<h4 id="qingstor-upload-cutoff">qingstor-upload-cutoff</h4>
<p>Cutoff for switching to chunked upload</p>
<p>Any files larger than this will be uploaded in chunks of chunk_size. The minimum is 0 and the maximum is 5GB.</p>
<ul>
<li>Config: upload_cutoff</li>
<li>Env Var: RCLONE_QINGSTOR_UPLOAD_CUTOFF</li>
<li>Type: SizeSuffix</li>
<li>Default: 200M</li>
</ul>
<h4 id="qingstor-chunk-size">qingstor-chunk-size</h4>
<p>Chunk size to use for uploading.</p>
<p>When uploading files larger than upload_cutoff they will be uploaded as multipart uploads using this chunk size.</p>
<p>Note that “qingstor-upload-concurrency” chunks of this size are buffered in memory per transfer.</p>
<p>If you are transferring large files over high speed links and you have enough memory, then increasing this will speed up the transfers.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_QINGSTOR_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 4M</li>
</ul>
<h4 id="qingstor-upload-concurrency">qingstor-upload-concurrency</h4>
<p>Concurrency for multipart uploads.</p>
<p>This is the number of chunks of the same file that are uploaded concurrently.</p>
<p>NB if you set this to &gt; 1 then the checksums of multpart uploads become corrupted (the uploads themselves are not corrupted though).</p>
<p>If you are uploading small numbers of large file over high speed link and these uploads do not fully utilize your bandwidth, then increasing this may help to speed up the transfers.</p>
<ul>
<li>Config: upload_concurrency</li>
<li>Env Var: RCLONE_QINGSTOR_UPLOAD_CONCURRENCY</li>
<li>Type: int</li>
<li>Default: 1</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="swift">Swift</h2>
<p>Swift refers to <a href="https://docs.openstack.org/swift/latest/">Openstack Object Storage</a>. Commercial implementations of that being:</p>
<ul>
<li><a href="https://www.rackspace.com/cloud/files/">Rackspace Cloud Files</a></li>
<li><a href="https://www.memset.com/cloud/storage/">Memset Memstore</a></li>
<li><a href="https://www.ovh.co.uk/public-cloud/storage/object-storage/">OVH Object Storage</a></li>
<li><a href="https://cloud.oracle.com/storage-opc">Oracle Cloud Storage</a></li>
<li><a href="https://console.bluemix.net/docs/infrastructure/objectstorage-swift/index.html">IBM Bluemix Cloud ObjectStorage Swift</a></li>
</ul>
<p>Paths are specified as <code>remote:container</code> (or <code>remote:</code> for the <code>lsd</code> command.) You may put subdirectories in too, eg <code>remote:container/path/to/dir</code>.</p>
<p>Here is an example of making a swift configuration. First run</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process.</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Box
\ &quot;box&quot;
5 / Cache a remote
\ &quot;cache&quot;
6 / Dropbox
\ &quot;dropbox&quot;
7 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
8 / FTP Connection
\ &quot;ftp&quot;
9 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
10 / Google Drive
\ &quot;drive&quot;
11 / Hubic
\ &quot;hubic&quot;
12 / Local Disk
\ &quot;local&quot;
13 / Microsoft Azure Blob Storage
\ &quot;azureblob&quot;
14 / Microsoft OneDrive
\ &quot;onedrive&quot;
15 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
16 / Pcloud
\ &quot;pcloud&quot;
17 / QingCloud Object Storage
\ &quot;qingstor&quot;
18 / SSH/SFTP Connection
\ &quot;sftp&quot;
19 / Webdav
\ &quot;webdav&quot;
20 / Yandex Disk
\ &quot;yandex&quot;
21 / http Connection
\ &quot;http&quot;
Storage&gt; swift
Get swift credentials from environment variables in standard OpenStack form.
Choose a number from below, or type in your own value
1 / Enter swift credentials in the next step
\ &quot;false&quot;
2 / Get swift credentials from environment vars. Leave other fields blank if using this.
\ &quot;true&quot;
env_auth&gt; true
User name to log in (OS_USERNAME).
user&gt;
API key or password (OS_PASSWORD).
key&gt;
Authentication URL for server (OS_AUTH_URL).
Choose a number from below, or type in your own value
1 / Rackspace US
\ &quot;https://auth.api.rackspacecloud.com/v1.0&quot;
2 / Rackspace UK
\ &quot;https://lon.auth.api.rackspacecloud.com/v1.0&quot;
3 / Rackspace v2
\ &quot;https://identity.api.rackspacecloud.com/v2.0&quot;
4 / Memset Memstore UK
\ &quot;https://auth.storage.memset.com/v1.0&quot;
5 / Memset Memstore UK v2
\ &quot;https://auth.storage.memset.com/v2.0&quot;
6 / OVH
\ &quot;https://auth.cloud.ovh.net/v2.0&quot;
auth&gt;
User ID to log in - optional - most swift systems use user and leave this blank (v3 auth) (OS_USER_ID).
user_id&gt;
User domain - optional (v3 auth) (OS_USER_DOMAIN_NAME)
domain&gt;
Tenant name - optional for v1 auth, this or tenant_id required otherwise (OS_TENANT_NAME or OS_PROJECT_NAME)
tenant&gt;
Tenant ID - optional for v1 auth, this or tenant required otherwise (OS_TENANT_ID)
tenant_id&gt;
Tenant domain - optional (v3 auth) (OS_PROJECT_DOMAIN_NAME)
tenant_domain&gt;
Region name - optional (OS_REGION_NAME)
region&gt;
Storage URL - optional (OS_STORAGE_URL)
storage_url&gt;
Auth Token from alternate authentication - optional (OS_AUTH_TOKEN)
auth_token&gt;
AuthVersion - optional - set to (1,2,3) if your auth URL has no version (ST_AUTH_VERSION)
auth_version&gt;
Endpoint type to choose from the service catalogue (OS_ENDPOINT_TYPE)
Choose a number from below, or type in your own value
1 / Public (default, choose this if not sure)
\ &quot;public&quot;
2 / Internal (use internal service net)
\ &quot;internal&quot;
3 / Admin
\ &quot;admin&quot;
endpoint_type&gt;
Remote config
--------------------
[test]
env_auth = true
user =
key =
auth =
user_id =
domain =
tenant =
tenant_id =
tenant_domain =
region =
storage_url =
auth_token =
auth_version =
endpoint_type =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>This remote is called <code>remote</code> and can now be used like this</p>
<p>See all containers</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new container</p>
<pre><code>rclone mkdir remote:container</code></pre>
<p>List the contents of a container</p>
<pre><code>rclone ls remote:container</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote container, deleting any excess files in the container.</p>
<pre><code>rclone sync /home/local/directory remote:container</code></pre>
<h3 id="configuration-from-an-openstack-credentials-file">Configuration from an OpenStack credentials file</h3>
<p>An OpenStack credentials file typically looks something something like this (without the comments)</p>
<pre><code>export OS_AUTH_URL=https://a.provider.net/v2.0
export OS_TENANT_ID=ffffffffffffffffffffffffffffffff
export OS_TENANT_NAME=&quot;1234567890123456&quot;
export OS_USERNAME=&quot;123abc567xy&quot;
echo &quot;Please enter your OpenStack Password: &quot;
read -sr OS_PASSWORD_INPUT
export OS_PASSWORD=$OS_PASSWORD_INPUT
export OS_REGION_NAME=&quot;SBG1&quot;
if [ -z &quot;$OS_REGION_NAME&quot; ]; then unset OS_REGION_NAME; fi</code></pre>
<p>The config file needs to look something like this where <code>$OS_USERNAME</code> represents the value of the <code>OS_USERNAME</code> variable - <code>123abc567xy</code> in the example above.</p>
<pre><code>[remote]
type = swift
user = $OS_USERNAME
key = $OS_PASSWORD
auth = $OS_AUTH_URL
tenant = $OS_TENANT_NAME</code></pre>
<p>Note that you may (or may not) need to set <code>region</code> too - try without first.</p>
<h3 id="configuration-from-the-environment">Configuration from the environment</h3>
<p>If you prefer you can configure rclone to use swift using a standard set of OpenStack environment variables.</p>
<p>When you run through the config, make sure you choose <code>true</code> for <code>env_auth</code> and leave everything else blank.</p>
<p>rclone will then set any empty config parameters from the environment using standard OpenStack environment variables. There is <a href="https://godoc.org/github.com/ncw/swift#Connection.ApplyEnvironment">a list of the variables</a> in the docs for the swift library.</p>
<h3 id="using-an-alternate-authentication-method">Using an alternate authentication method</h3>
<p>If your OpenStack installation uses a non-standard authentication method that might not be yet supported by rclone or the underlying swift library, you can authenticate externally (e.g. calling manually the <code>openstack</code> commands to get a token). Then, you just need to pass the two configuration variables <code>auth_token</code> and <code>storage_url</code>. If they are both provided, the other variables are ignored. rclone will not try to authenticate but instead assume it is already authenticated and use these two variables to access the OpenStack installation.</p>
<h4 id="using-rclone-without-a-config-file">Using rclone without a config file</h4>
<p>You can use rclone with swift without a config file, if desired, like this:</p>
<pre><code>source openstack-credentials-file
export RCLONE_CONFIG_MYREMOTE_TYPE=swift
export RCLONE_CONFIG_MYREMOTE_ENV_AUTH=true
rclone lsd myremote:</code></pre>
<h3 id="fast-list-9">fast-list</h3>
<p>This remote supports <code>--fast-list</code> which allows you to use fewer transactions in exchange for more memory. See the <a href="/docs/#fast-list">rclone docs</a> for more details.</p>
<h3 id="update-and-use-server-modtime-1">update and use-server-modtime</h3>
<p>As noted below, the modified time is stored on metadata on the object. It is used by default for all operations that require checking the time a file was last updated. It allows rclone to treat the remote more like a true filesystem, but it is inefficient because it requires an extra API call to retrieve the metadata.</p>
<p>For many operations, the time the object was last uploaded to the remote is sufficient to determine if it is “dirty”. By using <code>--update</code> along with <code>--use-server-modtime</code>, you can avoid the extra API call and simply upload files whose local modtime is newer than the time it was last uploaded.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/swift/swift.go then run make backenddocs -->
<h3 id="standard-options-20">Standard Options</h3>
<p>Here are the standard options specific to swift (Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)).</p>
<h4 id="swift-env-auth">swift-env-auth</h4>
<p>Get swift credentials from environment variables in standard OpenStack form.</p>
<ul>
<li>Config: env_auth</li>
<li>Env Var: RCLONE_SWIFT_ENV_AUTH</li>
<li>Type: bool</li>
<li>Default: false</li>
<li>Examples:
<ul>
<li>“false”
<ul>
<li>Enter swift credentials in the next step</li>
</ul></li>
<li>“true”
<ul>
<li>Get swift credentials from environment vars. Leave other fields blank if using this.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="swift-user">swift-user</h4>
<p>User name to log in (OS_USERNAME).</p>
<ul>
<li>Config: user</li>
<li>Env Var: RCLONE_SWIFT_USER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-key">swift-key</h4>
<p>API key or password (OS_PASSWORD).</p>
<ul>
<li>Config: key</li>
<li>Env Var: RCLONE_SWIFT_KEY</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-auth">swift-auth</h4>
<p>Authentication URL for server (OS_AUTH_URL).</p>
<ul>
<li>Config: auth</li>
<li>Env Var: RCLONE_SWIFT_AUTH</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“https://auth.api.rackspacecloud.com/v1.0”
<ul>
<li>Rackspace US</li>
</ul></li>
<li>“https://lon.auth.api.rackspacecloud.com/v1.0”
<ul>
<li>Rackspace UK</li>
</ul></li>
<li>“https://identity.api.rackspacecloud.com/v2.0”
<ul>
<li>Rackspace v2</li>
</ul></li>
<li>“https://auth.storage.memset.com/v1.0”
<ul>
<li>Memset Memstore UK</li>
</ul></li>
<li>“https://auth.storage.memset.com/v2.0”
<ul>
<li>Memset Memstore UK v2</li>
</ul></li>
<li>“https://auth.cloud.ovh.net/v2.0”
<ul>
<li>OVH</li>
</ul></li>
</ul></li>
</ul>
<h4 id="swift-user-id">swift-user-id</h4>
<p>User ID to log in - optional - most swift systems use user and leave this blank (v3 auth) (OS_USER_ID).</p>
<ul>
<li>Config: user_id</li>
<li>Env Var: RCLONE_SWIFT_USER_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-domain">swift-domain</h4>
<p>User domain - optional (v3 auth) (OS_USER_DOMAIN_NAME)</p>
<ul>
<li>Config: domain</li>
<li>Env Var: RCLONE_SWIFT_DOMAIN</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-tenant">swift-tenant</h4>
<p>Tenant name - optional for v1 auth, this or tenant_id required otherwise (OS_TENANT_NAME or OS_PROJECT_NAME)</p>
<ul>
<li>Config: tenant</li>
<li>Env Var: RCLONE_SWIFT_TENANT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-tenant-id">swift-tenant-id</h4>
<p>Tenant ID - optional for v1 auth, this or tenant required otherwise (OS_TENANT_ID)</p>
<ul>
<li>Config: tenant_id</li>
<li>Env Var: RCLONE_SWIFT_TENANT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-tenant-domain">swift-tenant-domain</h4>
<p>Tenant domain - optional (v3 auth) (OS_PROJECT_DOMAIN_NAME)</p>
<ul>
<li>Config: tenant_domain</li>
<li>Env Var: RCLONE_SWIFT_TENANT_DOMAIN</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-region">swift-region</h4>
<p>Region name - optional (OS_REGION_NAME)</p>
<ul>
<li>Config: region</li>
<li>Env Var: RCLONE_SWIFT_REGION</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-storage-url">swift-storage-url</h4>
<p>Storage URL - optional (OS_STORAGE_URL)</p>
<ul>
<li>Config: storage_url</li>
<li>Env Var: RCLONE_SWIFT_STORAGE_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-auth-token">swift-auth-token</h4>
<p>Auth Token from alternate authentication - optional (OS_AUTH_TOKEN)</p>
<ul>
<li>Config: auth_token</li>
<li>Env Var: RCLONE_SWIFT_AUTH_TOKEN</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-application-credential-id">swift-application-credential-id</h4>
<p>Application Credential ID (OS_APPLICATION_CREDENTIAL_ID)</p>
<ul>
<li>Config: application_credential_id</li>
<li>Env Var: RCLONE_SWIFT_APPLICATION_CREDENTIAL_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-application-credential-name">swift-application-credential-name</h4>
<p>Application Credential Name (OS_APPLICATION_CREDENTIAL_NAME)</p>
<ul>
<li>Config: application_credential_name</li>
<li>Env Var: RCLONE_SWIFT_APPLICATION_CREDENTIAL_NAME</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-application-credential-secret">swift-application-credential-secret</h4>
<p>Application Credential Secret (OS_APPLICATION_CREDENTIAL_SECRET)</p>
<ul>
<li>Config: application_credential_secret</li>
<li>Env Var: RCLONE_SWIFT_APPLICATION_CREDENTIAL_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="swift-auth-version">swift-auth-version</h4>
<p>AuthVersion - optional - set to (1,2,3) if your auth URL has no version (ST_AUTH_VERSION)</p>
<ul>
<li>Config: auth_version</li>
<li>Env Var: RCLONE_SWIFT_AUTH_VERSION</li>
<li>Type: int</li>
<li>Default: 0</li>
</ul>
<h4 id="swift-endpoint-type">swift-endpoint-type</h4>
<p>Endpoint type to choose from the service catalogue (OS_ENDPOINT_TYPE)</p>
<ul>
<li>Config: endpoint_type</li>
<li>Env Var: RCLONE_SWIFT_ENDPOINT_TYPE</li>
<li>Type: string</li>
<li>Default: “public”</li>
<li>Examples:
<ul>
<li>“public”
<ul>
<li>Public (default, choose this if not sure)</li>
</ul></li>
<li>“internal”
<ul>
<li>Internal (use internal service net)</li>
</ul></li>
<li>“admin”
<ul>
<li>Admin</li>
</ul></li>
</ul></li>
</ul>
<h4 id="swift-storage-policy">swift-storage-policy</h4>
<p>The storage policy to use when creating a new container</p>
<p>This applies the specified storage policy when creating a new container. The policy cannot be changed afterwards. The allowed configuration values and their meaning depend on your Swift storage provider.</p>
<ul>
<li>Config: storage_policy</li>
<li>Env Var: RCLONE_SWIFT_STORAGE_POLICY</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>&quot;&quot;
<ul>
<li>Default</li>
</ul></li>
<li>“pcs”
<ul>
<li>OVH Public Cloud Storage</li>
</ul></li>
<li>“pca”
<ul>
<li>OVH Public Cloud Archive</li>
</ul></li>
</ul></li>
</ul>
<h3 id="advanced-options-17">Advanced Options</h3>
<p>Here are the advanced options specific to swift (Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)).</p>
<h4 id="swift-chunk-size">swift-chunk-size</h4>
<p>Above this size files will be chunked into a _segments container.</p>
<p>Above this size files will be chunked into a _segments container. The default for this is 5GB which is its maximum value.</p>
<ul>
<li>Config: chunk_size</li>
<li>Env Var: RCLONE_SWIFT_CHUNK_SIZE</li>
<li>Type: SizeSuffix</li>
<li>Default: 5G</li>
</ul>
<h4 id="swift-no-chunk">swift-no-chunk</h4>
<p>Dont chunk files during streaming upload.</p>
<p>When doing streaming uploads (eg using rcat or mount) setting this flag will cause the swift backend to not upload chunked files.</p>
<p>This will limit the maximum upload size to 5GB. However non chunked files are easier to deal with and have an MD5SUM.</p>
<p>Rclone will still chunk files bigger than chunk_size when doing normal copy operations.</p>
<ul>
<li>Config: no_chunk</li>
<li>Env Var: RCLONE_SWIFT_NO_CHUNK</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="modified-time-8">Modified time</h3>
<p>The modified time is stored as metadata on the object as <code>X-Object-Meta-Mtime</code> as floating point since the epoch accurate to 1 ns.</p>
<p>This is a defacto standard (used in the official python-swiftclient amongst others) for storing the modification time for an object.</p>
<h3 id="limitations-13">Limitations</h3>
<p>The Swift API doesnt return a correct MD5SUM for segmented files (Dynamic or Static Large Objects) so rclone wont check or use the MD5SUM for these.</p>
<h3 id="troubleshooting-2">Troubleshooting</h3>
<h4 id="rclone-gives-failed-to-create-file-system-for-remote-bad-request">Rclone gives Failed to create file system for “remote:”: Bad Request</h4>
<p>Due to an oddity of the underlying swift library, it gives a “Bad Request” error rather than a more sensible error when the authentication fails for Swift.</p>
<p>So this most likely means your username / password is wrong. You can investigate further with the <code>--dump-bodies</code> flag.</p>
<p>This may also be caused by specifying the region when you shouldnt have (eg OVH).</p>
<h4 id="rclone-gives-failed-to-create-file-system-response-didnt-have-storage-storage-url-and-auth-token">Rclone gives Failed to create file system: Response didnt have storage storage url and auth token</h4>
<p>This is most likely caused by forgetting to specify your tenant when setting up a swift remote.</p>
<h2 id="pcloud">pCloud</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>The initial setup for pCloud involves getting a token from pCloud which you need to do in your browser. <code>rclone config</code> walks you through it.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Box
\ &quot;box&quot;
5 / Dropbox
\ &quot;dropbox&quot;
6 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
7 / FTP Connection
\ &quot;ftp&quot;
8 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
9 / Google Drive
\ &quot;drive&quot;
10 / Hubic
\ &quot;hubic&quot;
11 / Local Disk
\ &quot;local&quot;
12 / Microsoft Azure Blob Storage
\ &quot;azureblob&quot;
13 / Microsoft OneDrive
\ &quot;onedrive&quot;
14 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
15 / Pcloud
\ &quot;pcloud&quot;
16 / QingCloud Object Storage
\ &quot;qingstor&quot;
17 / SSH/SFTP Connection
\ &quot;sftp&quot;
18 / Yandex Disk
\ &quot;yandex&quot;
19 / http Connection
\ &quot;http&quot;
Storage&gt; pcloud
Pcloud App Client Id - leave blank normally.
client_id&gt;
Pcloud App Client Secret - leave blank normally.
client_secret&gt;
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
--------------------
[remote]
client_id =
client_secret =
token = {&quot;access_token&quot;:&quot;XXX&quot;,&quot;token_type&quot;:&quot;bearer&quot;,&quot;expiry&quot;:&quot;0001-01-01T00:00:00Z&quot;}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>See the <a href="https://rclone.org/remote_setup/">remote setup docs</a> for how to set it up on a machine with no Internet browser available.</p>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from pCloud. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your pCloud</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your pCloud</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an pCloud directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="modified-time-and-hashes-6">Modified time and hashes</h3>
<p>pCloud allows modification times to be set on objects accurate to 1 second. These will be used to detect whether objects need syncing or not. In order to set a Modification time pCloud requires the object be re-uploaded.</p>
<p>pCloud supports MD5 and SHA1 type hashes, so you can use the <code>--checksum</code> flag.</p>
<h3 id="deleting-files-5">Deleting files</h3>
<p>Deleted files will be moved to the trash. Your subscription level will determine how long items stay in the trash. <code>rclone cleanup</code> can be used to empty the trash.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/pcloud/pcloud.go then run make backenddocs -->
<h3 id="standard-options-21">Standard Options</h3>
<p>Here are the standard options specific to pcloud (Pcloud).</p>
<h4 id="pcloud-client-id">pcloud-client-id</h4>
<p>Pcloud App Client Id Leave blank normally.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_PCLOUD_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="pcloud-client-secret">pcloud-client-secret</h4>
<p>Pcloud App Client Secret Leave blank normally.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_PCLOUD_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="sftp">SFTP</h2>
<p>SFTP is the <a href="https://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol">Secure (or SSH) File Transfer Protocol</a>.</p>
<p>SFTP runs over SSH v2 and is installed as standard with most modern SSH installations.</p>
<p>Paths are specified as <code>remote:path</code>. If the path does not begin with a <code>/</code> it is relative to the home directory of the user. An empty path <code>remote:</code> refers to the users home directory.</p>
<p>&quot;Note that some SFTP servers will need the leading / - Synology is a good example of this. rsync.net, on the other hand, requires users to OMIT the leading /.</p>
<p>Here is an example of making an SFTP configuration. First run</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process.</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / FTP Connection
\ &quot;ftp&quot;
7 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
8 / Google Drive
\ &quot;drive&quot;
9 / Hubic
\ &quot;hubic&quot;
10 / Local Disk
\ &quot;local&quot;
11 / Microsoft OneDrive
\ &quot;onedrive&quot;
12 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
13 / SSH/SFTP Connection
\ &quot;sftp&quot;
14 / Yandex Disk
\ &quot;yandex&quot;
15 / http Connection
\ &quot;http&quot;
Storage&gt; sftp
SSH host to connect to
Choose a number from below, or type in your own value
1 / Connect to example.com
\ &quot;example.com&quot;
host&gt; example.com
SSH username, leave blank for current username, ncw
user&gt; sftpuser
SSH port, leave blank to use default (22)
port&gt;
SSH password, leave blank to use ssh-agent.
y) Yes type in my own password
g) Generate random password
n) No leave this optional password blank
y/g/n&gt; n
Path to unencrypted PEM-encoded private key file, leave blank to use ssh-agent.
key_file&gt;
Remote config
--------------------
[remote]
host = example.com
user = sftpuser
port =
pass =
key_file =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>This remote is called <code>remote</code> and can now be used like this:</p>
<p>See all directories in the home directory</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new directory</p>
<pre><code>rclone mkdir remote:path/to/directory</code></pre>
<p>List the contents of a directory</p>
<pre><code>rclone ls remote:path/to/directory</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote directory, deleting any excess files in the directory.</p>
<pre><code>rclone sync /home/local/directory remote:directory</code></pre>
<h3 id="ssh-authentication">SSH Authentication</h3>
<p>The SFTP remote supports three authentication methods:</p>
<ul>
<li>Password</li>
<li>Key file</li>
<li>ssh-agent</li>
</ul>
<p>Key files should be PEM-encoded private key files. For instance <code>/home/$USER/.ssh/id_rsa</code>. Only unencrypted OpenSSH or PEM encrypted files are supported.</p>
<p>If you dont specify <code>pass</code> or <code>key_file</code> then rclone will attempt to contact an ssh-agent.</p>
<p>You can also specify <code>key_use_agent</code> to force the usage of an ssh-agent. In this case <code>key_file</code> can also be specified to force the usage of a specific key in the ssh-agent.</p>
<p>Using an ssh-agent is the only way to load encrypted OpenSSH keys at the moment.</p>
<p>If you set the <code>--sftp-ask-password</code> option, rclone will prompt for a password when needed and no password has been configured.</p>
<h3 id="ssh-agent-on-macos">ssh-agent on macOS</h3>
<p>Note that there seem to be various problems with using an ssh-agent on macOS due to recent changes in the OS. The most effective work-around seems to be to start an ssh-agent in each session, eg</p>
<pre><code>eval `ssh-agent -s` &amp;&amp; ssh-add -A</code></pre>
<p>And then at the end of the session</p>
<pre><code>eval `ssh-agent -k`</code></pre>
<p>These commands can be used in scripts of course.</p>
<h3 id="modified-time-9">Modified time</h3>
<p>Modified times are stored on the server to 1 second precision.</p>
<p>Modified times are used in syncing and are fully supported.</p>
<p>Some SFTP servers disable setting/modifying the file modification time after upload (for example, certain configurations of ProFTPd with mod_sftp). If you are using one of these servers, you can set the option <code>set_modtime = false</code> in your RClone backend configuration to disable this behaviour.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/sftp/sftp.go then run make backenddocs -->
<h3 id="standard-options-22">Standard Options</h3>
<p>Here are the standard options specific to sftp (SSH/SFTP Connection).</p>
<h4 id="sftp-host">sftp-host</h4>
<p>SSH host to connect to</p>
<ul>
<li>Config: host</li>
<li>Env Var: RCLONE_SFTP_HOST</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“example.com”
<ul>
<li>Connect to example.com</li>
</ul></li>
</ul></li>
</ul>
<h4 id="sftp-user">sftp-user</h4>
<p>SSH username, leave blank for current username, ncw</p>
<ul>
<li>Config: user</li>
<li>Env Var: RCLONE_SFTP_USER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="sftp-port">sftp-port</h4>
<p>SSH port, leave blank to use default (22)</p>
<ul>
<li>Config: port</li>
<li>Env Var: RCLONE_SFTP_PORT</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="sftp-pass">sftp-pass</h4>
<p>SSH password, leave blank to use ssh-agent.</p>
<ul>
<li>Config: pass</li>
<li>Env Var: RCLONE_SFTP_PASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="sftp-key-file">sftp-key-file</h4>
<p>Path to PEM-encoded private key file, leave blank or set key-use-agent to use ssh-agent.</p>
<ul>
<li>Config: key_file</li>
<li>Env Var: RCLONE_SFTP_KEY_FILE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="sftp-key-file-pass">sftp-key-file-pass</h4>
<p>The passphrase to decrypt the PEM-encoded private key file.</p>
<p>Only PEM encrypted key files (old OpenSSH format) are supported. Encrypted keys in the new OpenSSH format cant be used.</p>
<ul>
<li>Config: key_file_pass</li>
<li>Env Var: RCLONE_SFTP_KEY_FILE_PASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="sftp-key-use-agent">sftp-key-use-agent</h4>
<p>When set forces the usage of the ssh-agent.</p>
<p>When key-file is also set, the “.pub” file of the specified key-file is read and only the associated key is requested from the ssh-agent. This allows to avoid <code>Too many authentication failures for *username*</code> errors when the ssh-agent contains many keys.</p>
<ul>
<li>Config: key_use_agent</li>
<li>Env Var: RCLONE_SFTP_KEY_USE_AGENT</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="sftp-use-insecure-cipher">sftp-use-insecure-cipher</h4>
<p>Enable the use of the aes128-cbc cipher. This cipher is insecure and may allow plaintext data to be recovered by an attacker.</p>
<ul>
<li>Config: use_insecure_cipher</li>
<li>Env Var: RCLONE_SFTP_USE_INSECURE_CIPHER</li>
<li>Type: bool</li>
<li>Default: false</li>
<li>Examples:
<ul>
<li>“false”
<ul>
<li>Use default Cipher list.</li>
</ul></li>
<li>“true”
<ul>
<li>Enables the use of the aes128-cbc cipher.</li>
</ul></li>
</ul></li>
</ul>
<h4 id="sftp-disable-hashcheck">sftp-disable-hashcheck</h4>
<p>Disable the execution of SSH commands to determine if remote file hashing is available. Leave blank or set to false to enable hashing (recommended), set to true to disable hashing.</p>
<ul>
<li>Config: disable_hashcheck</li>
<li>Env Var: RCLONE_SFTP_DISABLE_HASHCHECK</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h3 id="advanced-options-18">Advanced Options</h3>
<p>Here are the advanced options specific to sftp (SSH/SFTP Connection).</p>
<h4 id="sftp-ask-password">sftp-ask-password</h4>
<p>Allow asking for SFTP password when needed.</p>
<ul>
<li>Config: ask_password</li>
<li>Env Var: RCLONE_SFTP_ASK_PASSWORD</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="sftp-path-override">sftp-path-override</h4>
<p>Override path used by SSH connection.</p>
<p>This allows checksum calculation when SFTP and SSH paths are different. This issue affects among others Synology NAS boxes.</p>
<p>Shared folders can be found in directories representing volumes</p>
<pre><code>rclone sync /home/local/directory remote:/directory --ssh-path-override /volume2/directory</code></pre>
<p>Home directory can be found in a shared folder called “home”</p>
<pre><code>rclone sync /home/local/directory remote:/home/directory --ssh-path-override /volume1/homes/USER/directory</code></pre>
<ul>
<li>Config: path_override</li>
<li>Env Var: RCLONE_SFTP_PATH_OVERRIDE</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="sftp-set-modtime">sftp-set-modtime</h4>
<p>Set the modified time on the remote if set.</p>
<ul>
<li>Config: set_modtime</li>
<li>Env Var: RCLONE_SFTP_SET_MODTIME</li>
<li>Type: bool</li>
<li>Default: true</li>
</ul>
<!--- autogenerated options stop -->
<h3 id="limitations-14">Limitations</h3>
<p>SFTP supports checksums if the same login has shell access and <code>md5sum</code> or <code>sha1sum</code> as well as <code>echo</code> are in the remotes PATH. This remote checksumming (file hashing) is recommended and enabled by default. Disabling the checksumming may be required if you are connecting to SFTP servers which are not under your control, and to which the execution of remote commands is prohibited. Set the configuration option <code>disable_hashcheck</code> to <code>true</code> to disable checksumming.</p>
<p>SFTP also supports <code>about</code> if the same login has shell access and <code>df</code> are in the remotes PATH. <code>about</code> will return the total space, free space, and used space on the remote for the disk of the specified path on the remote or, if not set, the disk of the root on the remote. <code>about</code> will fail if it does not have shell access or if <code>df</code> is not in the remotes PATH.</p>
<p>Note that some SFTP servers (eg Synology) the paths are different for SSH and SFTP so the hashes cant be calculated properly. For them using <code>disable_hashcheck</code> is a good idea.</p>
<p>The only ssh agent supported under Windows is Puttys pageant.</p>
<p>The Go SSH library disables the use of the aes128-cbc cipher by default, due to security concerns. This can be re-enabled on a per-connection basis by setting the <code>use_insecure_cipher</code> setting in the configuration file to <code>true</code>. Further details on the insecurity of this cipher can be found [in this paper] (http://www.isg.rhul.ac.uk/~kp/SandPfinal.pdf).</p>
<p>SFTP isnt supported under plan9 until <a href="https://github.com/pkg/sftp/issues/156">this issue</a> is fixed.</p>
<p>Note that since SFTP isnt HTTP based the following flags dont work with it: <code>--dump-headers</code>, <code>--dump-bodies</code>, <code>--dump-auth</code></p>
<p>Note that <code>--timeout</code> isnt supported (but <code>--contimeout</code> is).</p>
<h2 id="union">Union</h2>
<p>The <code>union</code> remote provides a unification similar to UnionFS using other remotes.</p>
<p>Paths may be as deep as required or a local path, eg <code>remote:directory/subdirectory</code> or <code>/directory/subdirectory</code>.</p>
<p>During the initial setup with <code>rclone config</code> you will specify the target remotes as a space separated list. The target remotes can either be a local paths or other remotes.</p>
<p>The order of the remotes is important as it defines which remotes take precedence over others if there are files with the same name in the same logical path. The last remote is the topmost remote and replaces files with the same name from previous remotes.</p>
<p>Only the last remote is used to write to and delete from, all other remotes are read-only.</p>
<p>Subfolders can be used in target remote. Assume a union remote named <code>backup</code> with the remotes <code>mydrive:private/backup mydrive2:/backup</code>. Invoking <code>rclone mkdir backup:desktop</code> is exactly the same as invoking <code>rclone mkdir mydrive2:/backup/desktop</code>.</p>
<p>There will be no special handling of paths containing <code>..</code> segments. Invoking <code>rclone mkdir backup:../desktop</code> is exactly the same as invoking <code>rclone mkdir mydrive2:/backup/../desktop</code>.</p>
<p>Here is an example of how to make a union called <code>remote</code> for local folders. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Alias for an existing remote
\ &quot;alias&quot;
2 / Amazon Drive
\ &quot;amazon cloud drive&quot;
3 / Amazon S3 Compliant Storage Providers (AWS, Ceph, Dreamhost, IBM COS, Minio)
\ &quot;s3&quot;
4 / Backblaze B2
\ &quot;b2&quot;
5 / Box
\ &quot;box&quot;
6 / Builds a stackable unification remote, which can appear to merge the contents of several remotes
\ &quot;union&quot;
7 / Cache a remote
\ &quot;cache&quot;
8 / Dropbox
\ &quot;dropbox&quot;
9 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
10 / FTP Connection
\ &quot;ftp&quot;
11 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
12 / Google Drive
\ &quot;drive&quot;
13 / Hubic
\ &quot;hubic&quot;
14 / JottaCloud
\ &quot;jottacloud&quot;
15 / Local Disk
\ &quot;local&quot;
16 / Mega
\ &quot;mega&quot;
17 / Microsoft Azure Blob Storage
\ &quot;azureblob&quot;
18 / Microsoft OneDrive
\ &quot;onedrive&quot;
19 / OpenDrive
\ &quot;opendrive&quot;
20 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
21 / Pcloud
\ &quot;pcloud&quot;
22 / QingCloud Object Storage
\ &quot;qingstor&quot;
23 / SSH/SFTP Connection
\ &quot;sftp&quot;
24 / Webdav
\ &quot;webdav&quot;
25 / Yandex Disk
\ &quot;yandex&quot;
26 / http Connection
\ &quot;http&quot;
Storage&gt; union
List of space separated remotes.
Can be &#39;remotea:test/dir remoteb:&#39;, &#39;&quot;remotea:test/space dir&quot; remoteb:&#39;, etc.
The last remote is used to write to.
Enter a string value. Press Enter for the default (&quot;&quot;).
remotes&gt;
Remote config
--------------------
[remote]
type = union
remotes = C:\dir1 C:\dir2 C:\dir3
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y
Current remotes:
Name Type
==== ====
remote union
e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q&gt; q</code></pre>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level in <code>C:\dir1</code>, <code>C:\dir2</code> and <code>C:\dir3</code></p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in <code>C:\dir1</code>, <code>C:\dir2</code> and <code>C:\dir3</code></p>
<pre><code>rclone ls remote:</code></pre>
<p>Copy another local directory to the union directory called source, which will be placed into <code>C:\dir3</code></p>
<pre><code>rclone copy C:\source remote:source</code></pre>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/union/union.go then run make backenddocs -->
<h3 id="standard-options-23">Standard Options</h3>
<p>Here are the standard options specific to union (A stackable unification remote, which can appear to merge the contents of several remotes).</p>
<h4 id="union-remotes">union-remotes</h4>
<p>List of space separated remotes. Can be remotea:test/dir remoteb:, “remotea:test/space dir” remoteb:, etc. The last remote is used to write to.</p>
<ul>
<li>Config: remotes</li>
<li>Env Var: RCLONE_UNION_REMOTES</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="webdav">WebDAV</h2>
<p>Paths are specified as <code>remote:path</code></p>
<p>Paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>To configure the WebDAV remote you will need to have a URL for it, and a username and password. If you know what kind of system you are connecting to then rclone can enable extra features.</p>
<p>Here is an example of how to make a remote called <code>remote</code>. First run:</p>
<pre><code> rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
n/s/q&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
[snip]
22 / Webdav
\ &quot;webdav&quot;
[snip]
Storage&gt; webdav
URL of http host to connect to
Choose a number from below, or type in your own value
1 / Connect to example.com
\ &quot;https://example.com&quot;
url&gt; https://example.com/remote.php/webdav/
Name of the Webdav site/service/software you are using
Choose a number from below, or type in your own value
1 / Nextcloud
\ &quot;nextcloud&quot;
2 / Owncloud
\ &quot;owncloud&quot;
3 / Sharepoint
\ &quot;sharepoint&quot;
4 / Other site/service or software
\ &quot;other&quot;
vendor&gt; 1
User name
user&gt; user
Password.
y) Yes type in my own password
g) Generate random password
n) No leave this optional password blank
y/g/n&gt; y
Enter the password:
password:
Confirm the password:
password:
Bearer token instead of user/pass (eg a Macaroon)
bearer_token&gt;
Remote config
--------------------
[remote]
type = webdav
url = https://example.com/remote.php/webdav/
vendor = nextcloud
user = user
pass = *** ENCRYPTED ***
bearer_token =
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>List directories in top level of your WebDAV</p>
<pre><code>rclone lsd remote:</code></pre>
<p>List all the files in your WebDAV</p>
<pre><code>rclone ls remote:</code></pre>
<p>To copy a local directory to an WebDAV directory called backup</p>
<pre><code>rclone copy /home/source remote:backup</code></pre>
<h3 id="modified-time-and-hashes-7">Modified time and hashes</h3>
<p>Plain WebDAV does not support modified times. However when used with Owncloud or Nextcloud rclone will support modified times.</p>
<p>Likewise plain WebDAV does not support hashes, however when used with Owncloud or Nextcloud rclone will support SHA1 and MD5 hashes. Depending on the exact version of Owncloud or Nextcloud hashes may appear on all objects, or only on objects which had a hash uploaded with them.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/webdav/webdav.go then run make backenddocs -->
<h3 id="standard-options-24">Standard Options</h3>
<p>Here are the standard options specific to webdav (Webdav).</p>
<h4 id="webdav-url">webdav-url</h4>
<p>URL of http host to connect to</p>
<ul>
<li>Config: url</li>
<li>Env Var: RCLONE_WEBDAV_URL</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“https://example.com”
<ul>
<li>Connect to example.com</li>
</ul></li>
</ul></li>
</ul>
<h4 id="webdav-vendor">webdav-vendor</h4>
<p>Name of the Webdav site/service/software you are using</p>
<ul>
<li>Config: vendor</li>
<li>Env Var: RCLONE_WEBDAV_VENDOR</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“nextcloud”
<ul>
<li>Nextcloud</li>
</ul></li>
<li>“owncloud”
<ul>
<li>Owncloud</li>
</ul></li>
<li>“sharepoint”
<ul>
<li>Sharepoint</li>
</ul></li>
<li>“other”
<ul>
<li>Other site/service or software</li>
</ul></li>
</ul></li>
</ul>
<h4 id="webdav-user">webdav-user</h4>
<p>User name</p>
<ul>
<li>Config: user</li>
<li>Env Var: RCLONE_WEBDAV_USER</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="webdav-pass">webdav-pass</h4>
<p>Password.</p>
<ul>
<li>Config: pass</li>
<li>Env Var: RCLONE_WEBDAV_PASS</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="webdav-bearer-token">webdav-bearer-token</h4>
<p>Bearer token instead of user/pass (eg a Macaroon)</p>
<ul>
<li>Config: bearer_token</li>
<li>Env Var: RCLONE_WEBDAV_BEARER_TOKEN</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="provider-notes">Provider notes</h2>
<p>See below for notes on specific providers.</p>
<h3 id="owncloud">Owncloud</h3>
<p>Click on the settings cog in the bottom right of the page and this will show the WebDAV URL that rclone needs in the config step. It will look something like <code>https://example.com/remote.php/webdav/</code>.</p>
<p>Owncloud supports modified times using the <code>X-OC-Mtime</code> header.</p>
<h3 id="nextcloud">Nextcloud</h3>
<p>This is configured in an identical way to Owncloud. Note that Nextcloud does not support streaming of files (<code>rcat</code>) whereas Owncloud does. This <a href="https://github.com/nextcloud/nextcloud-snap/issues/365">may be fixed</a> in the future.</p>
<h3 id="put.io">Put.io</h3>
<p>put.io can be accessed in a read only way using webdav.</p>
<p>Configure the <code>url</code> as <code>https://webdav.put.io</code> and use your normal account username and password for <code>user</code> and <code>pass</code>. Set the <code>vendor</code> to <code>other</code>.</p>
<p>Your config file should end up looking like this:</p>
<pre><code>[putio]
type = webdav
url = https://webdav.put.io
vendor = other
user = YourUserName
pass = encryptedpassword</code></pre>
<p>If you are using <code>put.io</code> with <code>rclone mount</code> then use the <code>--read-only</code> flag to signal to the OS that it cant write to the mount.</p>
<p>For more help see <a href="http://help.put.io/apps-and-integrations/ftp-and-webdav">the put.io webdav docs</a>.</p>
<h3 id="sharepoint">Sharepoint</h3>
<p>Rclone can be used with Sharepoint provided by OneDrive for Business or Office365 Education Accounts. This feature is only needed for a few of these Accounts, mostly Office365 Education ones. These accounts are sometimes not verified by the domain owner <a href="https://github.com/rclone/rclone/issues/1975">github#1975</a></p>
<p>This means that these accounts cant be added using the official API (other Accounts should work with the “onedrive” option). However, it is possible to access them using webdav.</p>
<p>To use a sharepoint remote with rclone, add it like this: First, you need to get your remotes URL:</p>
<ul>
<li>Go <a href="https://onedrive.live.com/about/en-us/signin/">here</a> to open your OneDrive or to sign in</li>
<li>Now take a look at your address bar, the URL should look like this: <code>https://[YOUR-DOMAIN]-my.sharepoint.com/personal/[YOUR-EMAIL]/_layouts/15/onedrive.aspx</code></li>
</ul>
<p>Youll only need this URL upto the email address. After that, youll most likely want to add “/Documents”. That subdirectory contains the actual data stored on your OneDrive.</p>
<p>Add the remote to rclone like this: Configure the <code>url</code> as <code>https://[YOUR-DOMAIN]-my.sharepoint.com/personal/[YOUR-EMAIL]/Documents</code> and use your normal account email and password for <code>user</code> and <code>pass</code>. If you have 2FA enabled, you have to generate an app password. Set the <code>vendor</code> to <code>sharepoint</code>.</p>
<p>Your config file should look like this:</p>
<pre><code>[sharepoint]
type = webdav
url = https://[YOUR-DOMAIN]-my.sharepoint.com/personal/[YOUR-EMAIL]/Documents
vendor = other
user = YourEmailAddress
pass = encryptedpassword</code></pre>
<h3 id="dcache">dCache</h3>
<p><a href="https://www.dcache.org/">dCache</a> is a storage system with WebDAV doors that support, beside basic and x509, authentication with <a href="https://www.dcache.org/manuals/workshop-2017-05-29-Umea/000-Final/anupam_macaroons_v02.pdf">Macaroons</a> (bearer tokens).</p>
<p>Configure as normal using the <code>other</code> type. Dont enter a username or password, instead enter your Macaroon as the <code>bearer_token</code>.</p>
<p>The config will end up looking something like this.</p>
<pre><code>[dcache]
type = webdav
url = https://dcache...
vendor = other
user =
pass =
bearer_token = your-macaroon</code></pre>
<p>There is a <a href="https://github.com/sara-nl/GridScripts/blob/master/get-macaroon">script</a> that obtains a Macaroon from a dCache WebDAV endpoint, and creates an rclone config file.</p>
<h2 id="yandex-disk">Yandex Disk</h2>
<p><a href="https://disk.yandex.com">Yandex Disk</a> is a cloud storage solution created by <a href="https://yandex.com">Yandex</a>.</p>
<p>Yandex paths may be as deep as required, eg <code>remote:directory/subdirectory</code>.</p>
<p>Here is an example of making a yandex configuration. First run</p>
<pre><code>rclone config</code></pre>
<p>This will guide you through an interactive setup process:</p>
<pre><code>No remotes found - make a new one
n) New remote
s) Set configuration password
n/s&gt; n
name&gt; remote
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ &quot;amazon cloud drive&quot;
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ &quot;s3&quot;
3 / Backblaze B2
\ &quot;b2&quot;
4 / Dropbox
\ &quot;dropbox&quot;
5 / Encrypt/Decrypt a remote
\ &quot;crypt&quot;
6 / Google Cloud Storage (this is not Google Drive)
\ &quot;google cloud storage&quot;
7 / Google Drive
\ &quot;drive&quot;
8 / Hubic
\ &quot;hubic&quot;
9 / Local Disk
\ &quot;local&quot;
10 / Microsoft OneDrive
\ &quot;onedrive&quot;
11 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ &quot;swift&quot;
12 / SSH/SFTP Connection
\ &quot;sftp&quot;
13 / Yandex Disk
\ &quot;yandex&quot;
Storage&gt; 13
Yandex Client Id - leave blank normally.
client_id&gt;
Yandex Client Secret - leave blank normally.
client_secret&gt;
Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n&gt; y
If your browser doesn&#39;t open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
--------------------
[remote]
client_id =
client_secret =
token = {&quot;access_token&quot;:&quot;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&quot;,&quot;token_type&quot;:&quot;bearer&quot;,&quot;expiry&quot;:&quot;2016-12-29T12:27:11.362788025Z&quot;}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d&gt; y</code></pre>
<p>See the <a href="https://rclone.org/remote_setup/">remote setup docs</a> for how to set it up on a machine with no Internet browser available.</p>
<p>Note that rclone runs a webserver on your local machine to collect the token as returned from Yandex Disk. This only runs from the moment it opens your browser to the moment you get back the verification code. This is on <code>http://127.0.0.1:53682/</code> and this it may require you to unblock it temporarily if you are running a host firewall.</p>
<p>Once configured you can then use <code>rclone</code> like this,</p>
<p>See top level directories</p>
<pre><code>rclone lsd remote:</code></pre>
<p>Make a new directory</p>
<pre><code>rclone mkdir remote:directory</code></pre>
<p>List the contents of a directory</p>
<pre><code>rclone ls remote:directory</code></pre>
<p>Sync <code>/home/local/directory</code> to the remote path, deleting any excess files in the path.</p>
<pre><code>rclone sync /home/local/directory remote:directory</code></pre>
<h3 id="modified-time-10">Modified time</h3>
<p>Modified times are supported and are stored accurate to 1 ns in custom metadata called <code>rclone_modified</code> in RFC3339 with nanoseconds format.</p>
<h3 id="md5-checksums">MD5 checksums</h3>
<p>MD5 checksums are natively supported by Yandex Disk.</p>
<h3 id="emptying-trash-1">Emptying Trash</h3>
<p>If you wish to empty your trash you can use the <code>rclone cleanup remote:</code> command which will permanently delete all your trashed files. This command does not take any path arguments.</p>
<h3 id="quota-information-2">Quota information</h3>
<p>To view your current quota you can use the <code>rclone about remote:</code> command which will display your usage limit (quota) and the current usage.</p>
<h3 id="limitations-15">Limitations</h3>
<p>When uploading very large files (bigger than about 5GB) you will need to increase the <code>--timeout</code> parameter. This is because Yandex pauses (perhaps to calculate the MD5SUM for the entire file) before returning confirmation that the file has been uploaded. The default handling of timeouts in rclone is to assume a 5 minute pause is an error and close the connection - youll see <code>net/http: timeout awaiting response headers</code> errors in the logs if this is happening. Setting the timeout to twice the max size of file in GB should be enough, so if you want to upload a 30GB file set a timeout of <code>2 * 30 = 60m</code>, that is <code>--timeout 60m</code>.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/yandex/yandex.go then run make backenddocs -->
<h3 id="standard-options-25">Standard Options</h3>
<p>Here are the standard options specific to yandex (Yandex Disk).</p>
<h4 id="yandex-client-id">yandex-client-id</h4>
<p>Yandex Client Id Leave blank normally.</p>
<ul>
<li>Config: client_id</li>
<li>Env Var: RCLONE_YANDEX_CLIENT_ID</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h4 id="yandex-client-secret">yandex-client-secret</h4>
<p>Yandex Client Secret Leave blank normally.</p>
<ul>
<li>Config: client_secret</li>
<li>Env Var: RCLONE_YANDEX_CLIENT_SECRET</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
</ul>
<h3 id="advanced-options-19">Advanced Options</h3>
<p>Here are the advanced options specific to yandex (Yandex Disk).</p>
<h4 id="yandex-unlink">yandex-unlink</h4>
<p>Remove existing public link to file/folder with link command rather than creating. Default is false, meaning link command will create or retrieve public link.</p>
<ul>
<li>Config: unlink</li>
<li>Env Var: RCLONE_YANDEX_UNLINK</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h2 id="local-filesystem">Local Filesystem</h2>
<p>Local paths are specified as normal filesystem paths, eg <code>/path/to/wherever</code>, so</p>
<pre><code>rclone sync /home/source /tmp/destination</code></pre>
<p>Will sync <code>/home/source</code> to <code>/tmp/destination</code></p>
<p>These can be configured into the config file for consistencies sake, but it is probably easier not to.</p>
<h3 id="modified-time-11">Modified time</h3>
<p>Rclone reads and writes the modified time using an accuracy determined by the OS. Typically this is 1ns on Linux, 10 ns on Windows and 1 Second on OS X.</p>
<h3 id="filenames">Filenames</h3>
<p>Filenames are expected to be encoded in UTF-8 on disk. This is the normal case for Windows and OS X.</p>
<p>There is a bit more uncertainty in the Linux world, but new distributions will have UTF-8 encoded files names. If you are using an old Linux filesystem with non UTF-8 file names (eg latin1) then you can use the <code>convmv</code> tool to convert the filesystem to UTF-8. This tool is available in most distributions package managers.</p>
<p>If an invalid (non-UTF8) filename is read, the invalid characters will be replaced with the unicode replacement character, <>. <code>rclone</code> will emit a debug message in this case (use <code>-v</code> to see), eg</p>
<pre><code>Local file system at .: Replacing invalid UTF-8 characters in &quot;gro\xdf&quot;</code></pre>
<h3 id="long-paths-on-windows">Long paths on Windows</h3>
<p>Rclone handles long paths automatically, by converting all paths to long <a href="https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath">UNC paths</a> which allows paths up to 32,767 characters.</p>
<p>This is why you will see that your paths, for instance <code>c:\files</code> is converted to the UNC path <code>\\?\c:\files</code> in the output, and <code>\\server\share</code> is converted to <code>\\?\UNC\server\share</code>.</p>
<p>However, in rare cases this may cause problems with buggy file system drivers like <a href="https://github.com/rclone/rclone/issues/261">EncFS</a>. To disable UNC conversion globally, add this to your <code>.rclone.conf</code> file:</p>
<pre><code>[local]
nounc = true</code></pre>
<p>If you want to selectively disable UNC, you can add it to a separate entry like this:</p>
<pre><code>[nounc]
type = local
nounc = true</code></pre>
<p>And use rclone like this:</p>
<p><code>rclone copy c:\src nounc:z:\dst</code></p>
<p>This will use UNC paths on <code>c:\src</code> but not on <code>z:\dst</code>. Of course this will cause problems if the absolute path length of a file exceeds 258 characters on z, so only use this option if you have to.</p>
<h3 id="symlinks-junction-points">Symlinks / Junction points</h3>
<p>Normally rclone will ignore symlinks or junction points (which behave like symlinks under Windows).</p>
<p>If you supply <code>--copy-links</code> or <code>-L</code> then rclone will follow the symlink and copy the pointed to file or directory. Note that this flag is incompatible with <code>-links</code> / <code>-l</code>.</p>
<p>This flag applies to all commands.</p>
<p>For example, supposing you have a directory structure like this</p>
<pre><code>$ tree /tmp/a
/tmp/a
├── b -&gt; ../b
├── expected -&gt; ../expected
├── one
└── two
└── three</code></pre>
<p>Then you can see the difference with and without the flag like this</p>
<pre><code>$ rclone ls /tmp/a
6 one
6 two/three</code></pre>
<p>and</p>
<pre><code>$ rclone -L ls /tmp/a
4174 expected
6 one
6 two/three
6 b/two
6 b/one</code></pre>
<h4 id="links--l">links, -l</h4>
<p>Normally rclone will ignore symlinks or junction points (which behave like symlinks under Windows).</p>
<p>If you supply this flag then rclone will copy symbolic links from the local storage, and store them as text files, with a .rclonelink suffix in the remote storage.</p>
<p>The text file will contain the target of the symbolic link (see example).</p>
<p>This flag applies to all commands.</p>
<p>For example, supposing you have a directory structure like this</p>
<pre><code>$ tree /tmp/a
/tmp/a
├── file1 -&gt; ./file4
└── file2 -&gt; /home/user/file3</code></pre>
<p>Copying the entire directory with -l</p>
<pre><code>$ rclone copyto -l /tmp/a/file1 remote:/tmp/a/</code></pre>
<p>The remote files are created with a .rclonelink suffix</p>
<pre><code>$ rclone ls remote:/tmp/a
5 file1.rclonelink
14 file2.rclonelink</code></pre>
<p>The remote files will contain the target of the symbolic links</p>
<pre><code>$ rclone cat remote:/tmp/a/file1.rclonelink
./file4
$ rclone cat remote:/tmp/a/file2.rclonelink
/home/user/file3</code></pre>
<p>Copying them back with -l</p>
<pre><code>$ rclone copyto -l remote:/tmp/a/ /tmp/b/
$ tree /tmp/b
/tmp/b
├── file1 -&gt; ./file4
└── file2 -&gt; /home/user/file3</code></pre>
<p>However, if copied back without -l</p>
<pre><code>$ rclone copyto remote:/tmp/a/ /tmp/b/
$ tree /tmp/b
/tmp/b
├── file1.rclonelink
└── file2.rclonelink</code></pre>
<p>Note that this flag is incompatible with <code>-copy-links</code> / <code>-L</code>.</p>
<h3 id="restricting-filesystems-with-one-file-system">Restricting filesystems with one-file-system</h3>
<p>Normally rclone will recurse through filesystems as mounted.</p>
<p>However if you set <code>--one-file-system</code> or <code>-x</code> this tells rclone to stay in the filesystem specified by the root and not to recurse into different file systems.</p>
<p>For example if you have a directory hierarchy like this</p>
<pre><code>root
├── disk1 - disk1 mounted on the root
│   └── file3 - stored on disk1
├── disk2 - disk2 mounted on the root
│   └── file4 - stored on disk12
├── file1 - stored on the root disk
└── file2 - stored on the root disk</code></pre>
<p>Using <code>rclone --one-file-system copy root remote:</code> will only copy <code>file1</code> and <code>file2</code>. Eg</p>
<pre><code>$ rclone -q --one-file-system ls root
0 file1
0 file2</code></pre>
<pre><code>$ rclone -q ls root
0 disk1/file3
0 disk2/file4
0 file1
0 file2</code></pre>
<p><strong>NB</strong> Rclone (like most unix tools such as <code>du</code>, <code>rsync</code> and <code>tar</code>) treats a bind mount to the same device as being on the same filesystem.</p>
<p><strong>NB</strong> This flag is only available on Unix based systems. On systems where it isnt supported (eg Windows) it will be ignored.</p>
<!--- autogenerated options start - DO NOT EDIT, instead edit fs.RegInfo in backend/local/local.go then run make backenddocs -->
<h3 id="standard-options-26">Standard Options</h3>
<p>Here are the standard options specific to local (Local Disk).</p>
<h4 id="local-nounc">local-nounc</h4>
<p>Disable UNC (long path names) conversion on Windows</p>
<ul>
<li>Config: nounc</li>
<li>Env Var: RCLONE_LOCAL_NOUNC</li>
<li>Type: string</li>
<li>Default: &quot;&quot;</li>
<li>Examples:
<ul>
<li>“true”
<ul>
<li>Disables long file names</li>
</ul></li>
</ul></li>
</ul>
<h3 id="advanced-options-20">Advanced Options</h3>
<p>Here are the advanced options specific to local (Local Disk).</p>
<h4 id="copy-links">copy-links</h4>
<p>Follow symlinks and copy the pointed to item.</p>
<ul>
<li>Config: copy_links</li>
<li>Env Var: RCLONE_LOCAL_COPY_LINKS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="links">links</h4>
<p>Translate symlinks to/from regular files with a .rclonelink extension</p>
<ul>
<li>Config: links</li>
<li>Env Var: RCLONE_LOCAL_LINKS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="skip-links">skip-links</h4>
<p>Dont warn about skipped symlinks. This flag disables warning messages on skipped symlinks or junction points, as you explicitly acknowledge that they should be skipped.</p>
<ul>
<li>Config: skip_links</li>
<li>Env Var: RCLONE_LOCAL_SKIP_LINKS</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="local-no-unicode-normalization">local-no-unicode-normalization</h4>
<p>Dont apply unicode normalization to paths and filenames (Deprecated)</p>
<p>This flag is deprecated now. Rclone no longer normalizes unicode file names, but it compares them with unicode normalization in the sync routine instead.</p>
<ul>
<li>Config: no_unicode_normalization</li>
<li>Env Var: RCLONE_LOCAL_NO_UNICODE_NORMALIZATION</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="local-no-check-updated">local-no-check-updated</h4>
<p>Dont check to see if the files change during upload</p>
<p>Normally rclone checks the size and modification time of files as they are being uploaded and aborts with a message which starts “cant copy - source file is being updated” if the file changes during upload.</p>
<p>However on some file systems this modification time check may fail (eg <a href="https://github.com/rclone/rclone/issues/2206">Glusterfs #2206</a>) so this check can be disabled with this flag.</p>
<ul>
<li>Config: no_check_updated</li>
<li>Env Var: RCLONE_LOCAL_NO_CHECK_UPDATED</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<h4 id="one-file-system">one-file-system</h4>
<p>Dont cross filesystem boundaries (unix/macOS only).</p>
<ul>
<li>Config: one_file_system</li>
<li>Env Var: RCLONE_LOCAL_ONE_FILE_SYSTEM</li>
<li>Type: bool</li>
<li>Default: false</li>
</ul>
<!--- autogenerated options stop -->
<h1 id="changelog">Changelog</h1>
<h2 id="v1.48.0---2019-06-15">v1.48.0 - 2019-06-15</h2>
<ul>
<li>New commands
<ul>
<li>serve sftp: Serve an rclone remote over SFTP (Nick Craig-Wood)</li>
</ul></li>
<li>New Features
<ul>
<li>Multi threaded downloads to local storage (Nick Craig-Wood)
<ul>
<li>controlled with <code>--multi-thread-cutoff</code> and <code>--multi-thread-streams</code></li>
</ul></li>
<li>Use rclone.conf from rclone executable directory to enable portable use (albertony)</li>
<li>Allow sync of a file and a directory with the same name (forgems)
<ul>
<li>this is common on bucket based remotes, eg s3, gcs</li>
</ul></li>
<li>Add <code>--ignore-case-sync</code> for forced case insensitivity (garry415)</li>
<li>Implement <code>--stats-one-line-date</code> and <code>--stats-one-line-date-format</code> (Peter Berbec)</li>
<li>Log an ERROR for all commands which exit with non-zero status (Nick Craig-Wood)</li>
<li>Use go-homedir to read the home directory more reliably (Nick Craig-Wood)</li>
<li>Enable creating encrypted config through external script invocation (Wojciech Smigielski)</li>
<li>build: Drop support for go1.8 (Nick Craig-Wood)</li>
<li>config: Make config create/update encrypt passwords where necessary (Nick Craig-Wood)</li>
<li>copyurl: Honor <code>--no-check-certificate</code> (Stefan Breunig)</li>
<li>install: Linux skip man pages if no mandb (didil)</li>
<li>lsf: Support showing the Tier of the object (Nick Craig-Wood)</li>
<li>lsjson
<ul>
<li>Added EncryptedPath to output (calisro)</li>
<li>Support showing the Tier of the object (Nick Craig-Wood)</li>
<li>Add IsBucket field for bucket based remote listing of the root (Nick Craig-Wood)</li>
</ul></li>
<li>rc
<ul>
<li>Add <code>--loopback</code> flag to run commands directly without a server (Nick Craig-Wood)</li>
<li>Add operations/fsinfo: Return information about the remote (Nick Craig-Wood)</li>
<li>Skip auth for OPTIONS request (Nick Craig-Wood)</li>
<li>cmd/providers: Add DefaultStr, ValueStr and Type fields (Nick Craig-Wood)</li>
<li>jobs: Make job expiry timeouts configurable (Aleksandar Jankovic)</li>
</ul></li>
<li>serve dlna reworked and improved (Dan Walters)</li>
<li>serve ftp: add <code>--ftp-public-ip</code> flag to specify public IP (calistri)</li>
<li>serve restic: Add support for <code>--private-repos</code> in <code>serve restic</code> (Florian Apolloner)</li>
<li>serve webdav: Combine serve webdav and serve http (Gary Kim)</li>
<li>size: Ignore negative sizes when calculating total (Garry McNulty)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Make move and copy individual files obey <code>--backup-dir</code> (Nick Craig-Wood)</li>
<li>If <code>--ignore-checksum</code> is in effect, dont calculate checksum (Nick Craig-Wood)</li>
<li>moveto: Fix case-insensitive same remote move (Gary Kim)</li>
<li>rc: Fix serving bucket based objects with <code>--rc-serve</code> (Nick Craig-Wood)</li>
<li>serve webdav: Fix serveDir not being updated with changes from webdav (Gary Kim)</li>
</ul></li>
<li>Mount
<ul>
<li>Fix poll interval documentation (Animosity022)</li>
</ul></li>
<li>VFS
<ul>
<li>Make WriteAt for non cached files work with non-sequential writes (Nick Craig-Wood)</li>
</ul></li>
<li>Local
<ul>
<li>Only calculate the required hashes for big speedup (Nick Craig-Wood)</li>
<li>Log errors when listing instead of returning an error (Nick Craig-Wood)</li>
<li>Fix preallocate warning on Linux with ZFS (Nick Craig-Wood)</li>
</ul></li>
<li>Crypt
<ul>
<li>Make rclone dedupe work through crypt (Nick Craig-Wood)</li>
<li>Fix wrapping of ChangeNotify to decrypt directories properly (Nick Craig-Wood)</li>
<li>Support PublicLink (rclone link) of underlying backend (Nick Craig-Wood)</li>
<li>Implement Optional methods SetTier, GetTier (Nick Craig-Wood)</li>
</ul></li>
<li>B2
<ul>
<li>Implement server side copy (Nick Craig-Wood)</li>
<li>Implement SetModTime (Nick Craig-Wood)</li>
</ul></li>
<li>Drive
<ul>
<li>Fix move and copy from TeamDrive to GDrive (Fionera)</li>
<li>Add notes that cleanup works in the background on drive (Nick Craig-Wood)</li>
<li>Add <code>--drive-server-side-across-configs</code> to default back to old server side copy semantics by default (Nick Craig-Wood)</li>
<li>Add <code>--drive-size-as-quota</code> to show storage quota usage for file size (Garry McNulty)</li>
</ul></li>
<li>FTP
<ul>
<li>Add FTP List timeout (Jeff Quinn)</li>
<li>Add FTP over TLS support (Gary Kim)</li>
<li>Add <code>--ftp-no-check-certificate</code> option for FTPS (Gary Kim)</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Fix upload errors when uploading pre 1970 files (Nick Craig-Wood)</li>
</ul></li>
<li>Jottacloud
<ul>
<li>Add support for selecting device and mountpoint. (buengese)</li>
</ul></li>
<li>Mega
<ul>
<li>Add cleanup support (Gary Kim)</li>
</ul></li>
<li>Onedrive
<ul>
<li>More accurately check if root is found (Cnly)</li>
</ul></li>
<li>S3
<ul>
<li>Suppport S3 Accelerated endpoints with <code>--s3-use-accelerate-endpoint</code> (Nick Craig-Wood)</li>
<li>Add config info for Wasabis EU Central endpoint (Robert Marko)</li>
<li>Make SetModTime work for GLACIER while syncing (Philip Harvey)</li>
</ul></li>
<li>SFTP
<ul>
<li>Add About support (Gary Kim)</li>
<li>Fix about parsing of <code>df</code> results so it can cope with -ve results (Nick Craig-Wood)</li>
<li>Send custom client version and debug server version (Nick Craig-Wood)</li>
</ul></li>
<li>WebDAV
<ul>
<li>Retry on 423 Locked errors (Nick Craig-Wood)</li>
</ul></li>
</ul>
<h2 id="v1.47.0---2019-04-13">v1.47.0 - 2019-04-13</h2>
<ul>
<li>New backends
<ul>
<li>Backend for Koofr cloud storage service. (jaKa)</li>
</ul></li>
<li>New Features
<ul>
<li>Resume downloads if the reader fails in copy (Nick Craig-Wood)
<ul>
<li>this means rclone will restart transfers if the source has an error</li>
<li>this is most useful for downloads or cloud to cloud copies</li>
</ul></li>
<li>Use <code>--fast-list</code> for listing operations where it wont use more memory (Nick Craig-Wood)
<ul>
<li>this should speed up the following operations on remotes which support <code>ListR</code></li>
<li><code>dedupe</code>, <code>serve restic</code> <code>lsf</code>, <code>ls</code>, <code>lsl</code>, <code>lsjson</code>, <code>lsd</code>, <code>md5sum</code>, <code>sha1sum</code>, <code>hashsum</code>, <code>size</code>, <code>delete</code>, <code>cat</code>, <code>settier</code></li>
<li>use <code>--disable ListR</code> to get old behaviour if required</li>
</ul></li>
<li>Make <code>--files-from</code> traverse the destination unless <code>--no-traverse</code> is set (Nick Craig-Wood)
<ul>
<li>this fixes <code>--files-from</code> with Google drive and excessive API use in general.</li>
</ul></li>
<li>Make server side copy account bytes and obey <code>--max-transfer</code> (Nick Craig-Wood)</li>
<li>Add <code>--create-empty-src-dirs</code> flag and default to not creating empty dirs (ishuah)</li>
<li>Add client side TLS/SSL flags <code>--ca-cert</code>/<code>--client-cert</code>/<code>--client-key</code> (Nick Craig-Wood)</li>
<li>Implement <code>--suffix-keep-extension</code> for use with <code>--suffix</code> (Nick Craig-Wood)</li>
<li>build:
<ul>
<li>Switch to semvar compliant version tags to be go modules compliant (Nick Craig-Wood)</li>
<li>Update to use go1.12.x for the build (Nick Craig-Wood)</li>
</ul></li>
<li>serve dlna: Add connection manager service description to improve compatibility (Dan Walters)</li>
<li>lsf: Add e format to show encrypted names and o for original IDs (Nick Craig-Wood)</li>
<li>lsjson: Added <code>--files-only</code> and <code>--dirs-only</code> flags (calistri)</li>
<li>rc: Implement operations/publiclink the equivalent of <code>rclone link</code> (Nick Craig-Wood)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>accounting: Fix total ETA when <code>--stats-unit bits</code> is in effect (Nick Craig-Wood)</li>
<li>Bash TAB completion
<ul>
<li>Use private custom func to fix clash between rclone and kubectl (Nick Craig-Wood)</li>
<li>Fix for remotes with underscores in their names (Six)</li>
<li>Fix completion of remotes (Florian Gamböck)</li>
<li>Fix autocompletion of remote paths with spaces (Danil Semelenov)</li>
</ul></li>
<li>serve dlna: Fix root XML service descriptor (Dan Walters)</li>
<li>ncdu: Fix display corruption with Chinese characters (Nick Craig-Wood)</li>
<li>Add SIGTERM to signals which run the exit handlers on unix (Nick Craig-Wood)</li>
<li>rc: Reload filter when the options are set via the rc (Nick Craig-Wood)</li>
</ul></li>
<li>VFS / Mount
<ul>
<li>Fix FreeBSD: Ignore Truncate if called with no readers and already the correct size (Nick Craig-Wood)</li>
<li>Read directory and check for a file before mkdir (Nick Craig-Wood)</li>
<li>Shorten the locking window for vfs/refresh (Nick Craig-Wood)</li>
</ul></li>
<li>Azure Blob
<ul>
<li>Enable MD5 checksums when uploading files bigger than the “Cutoff” (Dr.Rx)</li>
<li>Fix SAS URL support (Nick Craig-Wood)</li>
</ul></li>
<li>B2
<ul>
<li>Allow manual configuration of backblaze downloadUrl (Vince)</li>
<li>Ignore already_hidden error on remove (Nick Craig-Wood)</li>
<li>Ignore malformed <code>src_last_modified_millis</code> (Nick Craig-Wood)</li>
</ul></li>
<li>Drive
<ul>
<li>Add <code>--skip-checksum-gphotos</code> to ignore incorrect checksums on Google Photos (Nick Craig-Wood)</li>
<li>Allow server side move/copy between different remotes. (Fionera)</li>
<li>Add docs on team drives and <code>--fast-list</code> eventual consistency (Nestar47)</li>
<li>Fix imports of text files (Nick Craig-Wood)</li>
<li>Fix range requests on 0 length files (Nick Craig-Wood)</li>
<li>Fix creation of duplicates with server side copy (Nick Craig-Wood)</li>
</ul></li>
<li>Dropbox
<ul>
<li>Retry blank errors to fix long listings (Nick Craig-Wood)</li>
</ul></li>
<li>FTP
<ul>
<li>Add <code>--ftp-concurrency</code> to limit maximum number of connections (Nick Craig-Wood)</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Fall back to default application credentials (marcintustin)</li>
<li>Allow bucket policy only buckets (Nick Craig-Wood)</li>
</ul></li>
<li>HTTP
<ul>
<li>Add <code>--http-no-slash</code> for websites with directories with no slashes (Nick Craig-Wood)</li>
<li>Remove duplicates from listings (Nick Craig-Wood)</li>
<li>Fix socket leak on 404 errors (Nick Craig-Wood)</li>
</ul></li>
<li>Jottacloud
<ul>
<li>Fix token refresh (Sebastian Bünger)</li>
<li>Add device registration (Oliver Heyme)</li>
</ul></li>
<li>Onedrive
<ul>
<li>Implement graceful cancel of multipart uploads if rclone is interrupted (Cnly)</li>
<li>Always add trailing colon to path when addressing items, (Cnly)</li>
<li>Return errors instead of panic for invalid uploads (Fabian Möller)</li>
</ul></li>
<li>S3
<ul>
<li>Add support for “Glacier Deep Archive” storage class (Manu)</li>
<li>Update Dreamhost endpoint (Nick Craig-Wood)</li>
<li>Note incompatibility with CEPH Jewel (Nick Craig-Wood)</li>
</ul></li>
<li>SFTP
<ul>
<li>Allow custom ssh client config (Alexandru Bumbacea)</li>
</ul></li>
<li>Swift
<ul>
<li>Obey Retry-After to enable OVH restore from cold storage (Nick Craig-Wood)</li>
<li>Work around token expiry on CEPH (Nick Craig-Wood)</li>
</ul></li>
<li>WebDAV
<ul>
<li>Allow IsCollection property to be integer or boolean (Nick Craig-Wood)</li>
<li>Fix race when creating directories (Nick Craig-Wood)</li>
<li>Fix About/df when reading the available/total returns 0 (Nick Craig-Wood)</li>
</ul></li>
</ul>
<h2 id="v1.46---2019-02-09">v1.46 - 2019-02-09</h2>
<ul>
<li>New backends
<ul>
<li>Support Alibaba Cloud (Aliyun) OSS via the s3 backend (Nick Craig-Wood)</li>
</ul></li>
<li>New commands
<ul>
<li>serve dlna: serves a remove via DLNA for the local network (nicolov)</li>
</ul></li>
<li>New Features
<ul>
<li>copy, move: Restore deprecated <code>--no-traverse</code> flag (Nick Craig-Wood)
<ul>
<li>This is useful for when transferring a small number of files into a large destination</li>
</ul></li>
<li>genautocomplete: Add remote path completion for bash completion (Christopher Peterson &amp; Danil Semelenov)</li>
<li>Buffer memory handling reworked to return memory to the OS better (Nick Craig-Wood)
<ul>
<li>Buffer recycling library to replace sync.Pool</li>
<li>Optionally use memory mapped memory for better memory shrinking</li>
<li>Enable with <code>--use-mmap</code> if having memory problems - not default yet</li>
</ul></li>
<li>Parallelise reading of files specified by <code>--files-from</code> (Nick Craig-Wood)</li>
<li>check: Add stats showing total files matched. (Dario Guzik)</li>
<li>Allow rename/delete open files under Windows (Nick Craig-Wood)</li>
<li>lsjson: Use exactly the correct number of decimal places in the seconds (Nick Craig-Wood)</li>
<li>Add cookie support with cmdline switch <code>--use-cookies</code> for all HTTP based remotes (qip)</li>
<li>Warn if <code>--checksum</code> is set but there are no hashes available (Nick Craig-Wood)</li>
<li>Rework rate limiting (pacer) to be more accurate and allow bursting (Nick Craig-Wood)</li>
<li>Improve error reporting for too many/few arguments in commands (Nick Craig-Wood)</li>
<li>listremotes: Remove <code>-l</code> short flag as it conflicts with the new global flag (weetmuts)</li>
<li>Make http serving with auth generate INFO messages on auth fail (Nick Craig-Wood)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Fix layout of stats (Nick Craig-Wood)</li>
<li>Fix <code>--progress</code> crash under Windows Jenkins (Nick Craig-Wood)</li>
<li>Fix transfer of google/onedrive docs by calling Rcat in Copy when size is -1 (Cnly)</li>
<li>copyurl: Fix checking of <code>--dry-run</code> (Denis Skovpen)</li>
</ul></li>
<li>Mount
<ul>
<li>Check that mountpoint and local directory to mount dont overlap (Nick Craig-Wood)</li>
<li>Fix mount size under 32 bit Windows (Nick Craig-Wood)</li>
</ul></li>
<li>VFS
<ul>
<li>Implement renaming of directories for backends without DirMove (Nick Craig-Wood)
<ul>
<li>now all backends except b2 support renaming directories</li>
</ul></li>
<li>Implement <code>--vfs-cache-max-size</code> to limit the total size of the cache (Nick Craig-Wood)</li>
<li>Add <code>--dir-perms</code> and <code>--file-perms</code> flags to set default permissions (Nick Craig-Wood)</li>
<li>Fix deadlock on concurrent operations on a directory (Nick Craig-Wood)</li>
<li>Fix deadlock between RWFileHandle.close and File.Remove (Nick Craig-Wood)</li>
<li>Fix renaming/deleting open files with cache mode “writes” under Windows (Nick Craig-Wood)</li>
<li>Fix panic on rename with <code>--dry-run</code> set (Nick Craig-Wood)</li>
<li>Fix vfs/refresh with recurse=true needing the <code>--fast-list</code> flag</li>
</ul></li>
<li>Local
<ul>
<li>Add support for <code>-l</code>/<code>--links</code> (symbolic link translation) (yair@unicorn)
<ul>
<li>this works by showing links as <code>link.rclonelink</code> - see local backend docs for more info</li>
<li>this errors if used with <code>-L</code>/<code>--copy-links</code></li>
</ul></li>
<li>Fix renaming/deleting open files on Windows (Nick Craig-Wood)</li>
</ul></li>
<li>Crypt
<ul>
<li>Check for maximum length before decrypting filename to fix panic (Garry McNulty)</li>
</ul></li>
<li>Azure Blob
<ul>
<li>Allow building azureblob backend on *BSD (themylogin)</li>
<li>Use the rclone HTTP client to support <code>--dump headers</code>, <code>--tpslimit</code> etc (Nick Craig-Wood)</li>
<li>Use the s3 pacer for 0 delay in non error conditions (Nick Craig-Wood)</li>
<li>Ignore directory markers (Nick Craig-Wood)</li>
<li>Stop Mkdir attempting to create existing containers (Nick Craig-Wood)</li>
</ul></li>
<li>B2
<ul>
<li>cleanup: will remove unfinished large files &gt;24hrs old (Garry McNulty)</li>
<li>For a bucket limited application key check the bucket name (Nick Craig-Wood)
<ul>
<li>before this, rclone would use the authorised bucket regardless of what you put on the command line</li>
</ul></li>
<li>Added <code>--b2-disable-checksum</code> flag (Wojciech Smigielski)
<ul>
<li>this enables large files to be uploaded without a SHA-1 hash for speed reasons</li>
</ul></li>
</ul></li>
<li>Drive
<ul>
<li>Set default pacer to 100ms for 10 tps (Nick Craig-Wood)
<ul>
<li>This fits the Google defaults much better and reduces the 403 errors massively</li>
<li>Add <code>--drive-pacer-min-sleep</code> and <code>--drive-pacer-burst</code> to control the pacer</li>
</ul></li>
<li>Improve ChangeNotify support for items with multiple parents (Fabian Möller)</li>
<li>Fix ListR for items with multiple parents - this fixes oddities with <code>vfs/refresh</code> (Fabian Möller)</li>
<li>Fix using <code>--drive-impersonate</code> and appfolders (Nick Craig-Wood)</li>
<li>Fix google docs in rclone mount for some (not all) applications (Nick Craig-Wood)</li>
</ul></li>
<li>Dropbox
<ul>
<li>Retry-After support for Dropbox backend (Mathieu Carbou)</li>
</ul></li>
<li>FTP
<ul>
<li>Wait for 60 seconds for a connection to Close then declare it dead (Nick Craig-Wood)
<ul>
<li>helps with indefinite hangs on some FTP servers</li>
</ul></li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Update google cloud storage endpoints (weetmuts)</li>
</ul></li>
<li>HTTP
<ul>
<li>Add an example with username and password which is supported but wasnt documented (Nick Craig-Wood)</li>
<li>Fix backend with <code>--files-from</code> and non-existent files (Nick Craig-Wood)</li>
</ul></li>
<li>Hubic
<ul>
<li>Make error message more informative if authentication fails (Nick Craig-Wood)</li>
</ul></li>
<li>Jottacloud
<ul>
<li>Resume and deduplication support (Oliver Heyme)</li>
<li>Use token auth for all API requests Dont store password anymore (Sebastian Bünger)</li>
<li>Add support for 2-factor authentification (Sebastian Bünger)</li>
</ul></li>
<li>Mega
<ul>
<li>Implement v2 account login which fixes logins for newer Mega accounts (Nick Craig-Wood)</li>
<li>Return error if an unknown length file is attempted to be uploaded (Nick Craig-Wood)</li>
<li>Add new error codes for better error reporting (Nick Craig-Wood)</li>
</ul></li>
<li>Onedrive
<ul>
<li>Fix broken support for “shared with me” folders (Alex Chen)</li>
<li>Fix root ID not normalised (Cnly)</li>
<li>Return err instead of panic on unknown-sized uploads (Cnly)</li>
</ul></li>
<li>Qingstor
<ul>
<li>Fix go routine leak on multipart upload errors (Nick Craig-Wood)</li>
<li>Add upload chunk size/concurrency/cutoff control (Nick Craig-Wood)</li>
<li>Default <code>--qingstor-upload-concurrency</code> to 1 to work around bug (Nick Craig-Wood)</li>
</ul></li>
<li>S3
<ul>
<li>Implement <code>--s3-upload-cutoff</code> for single part uploads below this (Nick Craig-Wood)</li>
<li>Change <code>--s3-upload-concurrency</code> default to 4 to increase perfomance (Nick Craig-Wood)</li>
<li>Add <code>--s3-bucket-acl</code> to control bucket ACL (Nick Craig-Wood)</li>
<li>Auto detect region for buckets on operation failure (Nick Craig-Wood)</li>
<li>Add GLACIER storage class (William Cocker)</li>
<li>Add Scaleway to s3 documentation (Rémy Léone)</li>
<li>Add AWS endpoint eu-north-1 (weetmuts)</li>
</ul></li>
<li>SFTP
<ul>
<li>Add support for PEM encrypted private keys (Fabian Möller)</li>
<li>Add option to force the usage of an ssh-agent (Fabian Möller)</li>
<li>Perform environment variable expansion on key-file (Fabian Möller)</li>
<li>Fix rmdir on Windows based servers (eg CrushFTP) (Nick Craig-Wood)</li>
<li>Fix rmdir deleting directory contents on some SFTP servers (Nick Craig-Wood)</li>
<li>Fix error on dangling symlinks (Nick Craig-Wood)</li>
</ul></li>
<li>Swift
<ul>
<li>Add <code>--swift-no-chunk</code> to disable segmented uploads in rcat/mount (Nick Craig-Wood)</li>
<li>Introduce application credential auth support (kayrus)</li>
<li>Fix memory usage by slimming Object (Nick Craig-Wood)</li>
<li>Fix extra requests on upload (Nick Craig-Wood)</li>
<li>Fix reauth on big files (Nick Craig-Wood)</li>
</ul></li>
<li>Union
<ul>
<li>Fix poll-interval not working (Nick Craig-Wood)</li>
</ul></li>
<li>WebDAV
<ul>
<li>Support About which means rclone mount will show the correct disk size (Nick Craig-Wood)</li>
<li>Support MD5 and SHA1 hashes with Owncloud and Nextcloud (Nick Craig-Wood)</li>
<li>Fail soft on time parsing errors (Nick Craig-Wood)</li>
<li>Fix infinite loop on failed directory creation (Nick Craig-Wood)</li>
<li>Fix identification of directories for Bitrix Site Manager (Nick Craig-Wood)</li>
<li>Fix upload of 0 length files on some servers (Nick Craig-Wood)</li>
<li>Fix if MKCOL fails with 423 Locked assume the directory exists (Nick Craig-Wood)</li>
</ul></li>
</ul>
<h2 id="v1.45---2018-11-24">v1.45 - 2018-11-24</h2>
<ul>
<li>New backends
<ul>
<li>The Yandex backend was re-written - see below for details (Sebastian Bünger)</li>
</ul></li>
<li>New commands
<ul>
<li>rcd: New command just to serve the remote control API (Nick Craig-Wood)</li>
</ul></li>
<li>New Features
<ul>
<li>The remote control API (rc) was greatly expanded to allow full control over rclone (Nick Craig-Wood)
<ul>
<li>sensitive operations require authorization or the <code>--rc-no-auth</code> flag</li>
<li>config/* operations to configure rclone</li>
<li>options/* for reading/setting command line flags</li>
<li>operations/* for all low level operations, eg copy file, list directory</li>
<li>sync/* for sync, copy and move</li>
<li><code>--rc-files</code> flag to serve files on the rc http server
<ul>
<li>this is for building web native GUIs for rclone</li>
</ul></li>
<li>Optionally serving objects on the rc http server</li>
<li>Ensure rclone fails to start up if the <code>--rc</code> port is in use already</li>
<li>See <a href="https://rclone.org/rc/">the rc docs</a> for more info</li>
</ul></li>
<li>sync/copy/move
<ul>
<li>Make <code>--files-from</code> only read the objects specified and dont scan directories (Nick Craig-Wood)
<ul>
<li>This is a huge speed improvement for destinations with lots of files</li>
</ul></li>
</ul></li>
<li>filter: Add <code>--ignore-case</code> flag (Nick Craig-Wood)</li>
<li>ncdu: Add remove function (d key) (Henning Surmeier)</li>
<li>rc command
<ul>
<li>Add <code>--json</code> flag for structured JSON input (Nick Craig-Wood)</li>
<li>Add <code>--user</code> and <code>--pass</code> flags and interpret <code>--rc-user</code>, <code>--rc-pass</code>, <code>--rc-addr</code> (Nick Craig-Wood)</li>
</ul></li>
<li>build
<ul>
<li>Require go1.8 or later for compilation (Nick Craig-Wood)</li>
<li>Enable softfloat on MIPS arch (Scott Edlund)</li>
<li>Integration test framework revamped with a better report and better retries (Nick Craig-Wood)</li>
</ul></li>
</ul></li>
<li>Bug Fixes
<ul>
<li>cmd: Make progress update the stats correctly at the end (Nick Craig-Wood)</li>
<li>config: Create config directory on save if it is missing (Nick Craig-Wood)</li>
<li>dedupe: Check for existing filename before renaming a dupe file (ssaqua)</li>
<li>move: Dont create directories with dry-run (Nick Craig-Wood)</li>
<li>operations: Fix Purge and Rmdirs when dir is not the root (Nick Craig-Wood)</li>
<li>serve http/webdav/restic: Ensure rclone exits if the port is in use (Nick Craig-Wood)</li>
</ul></li>
<li>Mount
<ul>
<li>Make <code>--volname</code> work for Windows and macOS (Nick Craig-Wood)</li>
</ul></li>
<li>Azure Blob
<ul>
<li>Avoid context deadline exceeded error by setting a large TryTimeout value (brused27)</li>
<li>Fix erroneous Rmdir error “directory not empty” (Nick Craig-Wood)</li>
<li>Wait for up to 60s to create a just deleted container (Nick Craig-Wood)</li>
</ul></li>
<li>Dropbox
<ul>
<li>Add dropbox impersonate support (Jake Coggiano)</li>
</ul></li>
<li>Jottacloud
<ul>
<li>Fix bug in <code>--fast-list</code> handing of empty folders (albertony)</li>
</ul></li>
<li>Opendrive
<ul>
<li>Fix transfer of files with <code>+</code> and <code>&amp;</code> in (Nick Craig-Wood)</li>
<li>Fix retries of upload chunks (Nick Craig-Wood)</li>
</ul></li>
<li>S3
<ul>
<li>Set ACL for server side copies to that provided by the user (Nick Craig-Wood)</li>
<li>Fix role_arn, credential_source, … (Erik Swanson)</li>
<li>Add config info for Wasabis US-West endpoint (Henry Ptasinski)</li>
</ul></li>
<li>SFTP
<ul>
<li>Ensure file hash checking is really disabled (Jon Fautley)</li>
</ul></li>
<li>Swift
<ul>
<li>Add pacer for retries to make swift more reliable (Nick Craig-Wood)</li>
</ul></li>
<li>WebDAV
<ul>
<li>Add Content-Type to PUT requests (Nick Craig-Wood)</li>
<li>Fix config parsing so <code>--webdav-user</code> and <code>--webdav-pass</code> flags work (Nick Craig-Wood)</li>
<li>Add RFC3339 date format (Ralf Hemberger)</li>
</ul></li>
<li>Yandex
<ul>
<li>The yandex backend was re-written (Sebastian Bünger)
<ul>
<li>This implements low level retries (Sebastian Bünger)</li>
<li>Copy, Move, DirMove, PublicLink and About optional interfaces (Sebastian Bünger)</li>
<li>Improved general error handling (Sebastian Bünger)</li>
<li>Removed ListR for now due to inconsistent behaviour (Sebastian Bünger)</li>
</ul></li>
</ul></li>
</ul>
<h2 id="v1.44---2018-10-15">v1.44 - 2018-10-15</h2>
<ul>
<li>New commands
<ul>
<li>serve ftp: Add ftp server (Antoine GIRARD)</li>
<li>settier: perform storage tier changes on supported remotes (sandeepkru)</li>
</ul></li>
<li>New Features
<ul>
<li>Reworked command line help
<ul>
<li>Make default help less verbose (Nick Craig-Wood)</li>
<li>Split flags up into global and backend flags (Nick Craig-Wood)</li>
<li>Implement specialised help for flags and backends (Nick Craig-Wood)</li>
<li>Show URL of backend help page when starting config (Nick Craig-Wood)</li>
</ul></li>
<li>stats: Long names now split in center (Joanna Marek)</li>
<li>Add log-format flag for more control over log output (dcpu)</li>
<li>rc: Add support for OPTIONS and basic CORS (frenos)</li>
<li>stats: show FatalErrors and NoRetryErrors in stats (Cédric Connes)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Fix -P not ending with a new line (Nick Craig-Wood)</li>
<li>config: dont create default config dir when user supplies config (albertony)</li>
<li>Dont print non-ASCII characters with progress on windows (Nick Craig-Wood)</li>
<li>Correct logs for excluded items (ssaqua)</li>
</ul></li>
<li>Mount
<ul>
<li>Remove EXPERIMENTAL tags (Nick Craig-Wood)</li>
</ul></li>
<li>VFS
<ul>
<li>Fix race condition detected by serve ftp tests (Nick Craig-Wood)</li>
<li>Add vfs/poll-interval rc command (Fabian Möller)</li>
<li>Enable rename for nearly all remotes using server side Move or Copy (Nick Craig-Wood)</li>
<li>Reduce directory cache cleared by poll-interval (Fabian Möller)</li>
<li>Remove EXPERIMENTAL tags (Nick Craig-Wood)</li>
</ul></li>
<li>Local
<ul>
<li>Skip bad symlinks in dir listing with -L enabled (Cédric Connes)</li>
<li>Preallocate files on Windows to reduce fragmentation (Nick Craig-Wood)</li>
<li>Preallocate files on linux with fallocate(2) (Nick Craig-Wood)</li>
</ul></li>
<li>Cache
<ul>
<li>Add cache/fetch rc function (Fabian Möller)</li>
<li>Fix worker scale down (Fabian Möller)</li>
<li>Improve performance by not sending info requests for cached chunks (dcpu)</li>
<li>Fix error return value of cache/fetch rc method (Fabian Möller)</li>
<li>Documentation fix for cache-chunk-total-size (Anagh Kumar Baranwal)</li>
<li>Preserve leading / in wrapped remote path (Fabian Möller)</li>
<li>Add plex_insecure option to skip certificate validation (Fabian Möller)</li>
<li>Remove entries that no longer exist in the source (dcpu)</li>
</ul></li>
<li>Crypt
<ul>
<li>Preserve leading / in wrapped remote path (Fabian Möller)</li>
</ul></li>
<li>Alias
<ul>
<li>Fix handling of Windows network paths (Nick Craig-Wood)</li>
</ul></li>
<li>Azure Blob
<ul>
<li>Add azureblob-list-chunk parameter (Santiago Rodríguez)</li>
<li>Implemented settier command support on azureblob remote. (sandeepkru)</li>
<li>Work around SDK bug which causes errors for chunk-sized files (Nick Craig-Wood)</li>
</ul></li>
<li>Box
<ul>
<li>Implement link sharing. (Sebastian Bünger)</li>
</ul></li>
<li>Drive
<ul>
<li>Add drive-import-formats - google docs can now be imported (Fabian Möller)
<ul>
<li>Rewrite mime type and extension handling (Fabian Möller)</li>
<li>Add document links (Fabian Möller)</li>
<li>Add support for multipart document extensions (Fabian Möller)</li>
<li>Add support for apps-script to json export (Fabian Möller)</li>
<li>Fix escaped chars in documents during list (Fabian Möller)</li>
</ul></li>
<li>Add drive-v2-download-min-size a workaround for slow downloads (Fabian Möller)</li>
<li>Improve directory notifications in ChangeNotify (Fabian Möller)</li>
<li>When listing team drives in config, continue on failure (Nick Craig-Wood)</li>
</ul></li>
<li>FTP
<ul>
<li>Add a small pause after failed upload before deleting file (Nick Craig-Wood)</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Fix service_account_file being ignored (Fabian Möller)</li>
</ul></li>
<li>Jottacloud
<ul>
<li>Minor improvement in quota info (omit if unlimited) (albertony)</li>
<li>Add fast-list support (albertony)</li>
<li>Add permanent delete support: jottacloud-hard-delete (albertony)</li>
<li>Add link sharing support (albertony)</li>
<li>Fix handling of reserved characters. (Sebastian Bünger)</li>
<li>Fix socket leak on Object.Remove (Nick Craig-Wood)</li>
</ul></li>
<li>Onedrive
<ul>
<li>Rework to support Microsoft Graph (Cnly)
<ul>
<li><strong>NB</strong> this will require re-authenticating the remote</li>
</ul></li>
<li>Removed upload cutoff and always do session uploads (Oliver Heyme)</li>
<li>Use single-part upload for empty files (Cnly)</li>
<li>Fix new fields not saved when editing old config (Alex Chen)</li>
<li>Fix sometimes special chars in filenames not replaced (Alex Chen)</li>
<li>Ignore OneNote files by default (Alex Chen)</li>
<li>Add link sharing support (jackyzy823)</li>
</ul></li>
<li>S3
<ul>
<li>Use custom pacer, to retry operations when reasonable (Craig Miskell)</li>
<li>Use configured server-side-encryption and storace class options when calling CopyObject() (Paul Kohout)</li>
<li>Make s3-v2-auth flag (Nick Craig-Wood)</li>
<li>Fix v2 auth on files with spaces (Nick Craig-Wood)</li>
</ul></li>
<li>Union
<ul>
<li>Implement union backend which reads from multiple backends (Felix Brucker)</li>
<li>Implement optional interfaces (Move, DirMove, Copy etc) (Nick Craig-Wood)</li>
<li>Fix ChangeNotify to support multiple remotes (Fabian Möller)</li>
<li>Fix backup-dir on union backend (Nick Craig-Wood)</li>
</ul></li>
<li>WebDAV
<ul>
<li>Add another time format (Nick Craig-Wood)</li>
<li>Add a small pause after failed upload before deleting file (Nick Craig-Wood)</li>
<li>Add workaround for missing mtime (buergi)</li>
<li>Sharepoint: Renew cookies after 12hrs (Henning Surmeier)</li>
</ul></li>
<li>Yandex
<ul>
<li>Remove redundant nil checks (teresy)</li>
</ul></li>
</ul>
<h2 id="v1.43.1---2018-09-07">v1.43.1 - 2018-09-07</h2>
<p>Point release to fix hubic and azureblob backends.</p>
<ul>
<li>Bug Fixes
<ul>
<li>ncdu: Return error instead of log.Fatal in Show (Fabian Möller)</li>
<li>cmd: Fix crash with progress and stats 0 (Nick Craig-Wood)</li>
<li>docs: Tidy website display (Anagh Kumar Baranwal)</li>
</ul></li>
<li>Azure Blob:
<ul>
<li>Fix multi-part uploads. (sandeepkru)</li>
</ul></li>
<li>Hubic
<ul>
<li>Fix uploads (Nick Craig-Wood)</li>
<li>Retry auth fetching if it fails to make hubic more reliable (Nick Craig-Wood)</li>
</ul></li>
</ul>
<h2 id="v1.43---2018-09-01">v1.43 - 2018-09-01</h2>
<ul>
<li>New backends
<ul>
<li>Jottacloud (Sebastian Bünger)</li>
</ul></li>
<li>New commands
<ul>
<li>copyurl: copies a URL to a remote (Denis)</li>
</ul></li>
<li>New Features
<ul>
<li>Reworked config for backends (Nick Craig-Wood)
<ul>
<li>All backend config can now be supplied by command line, env var or config file</li>
<li>Advanced section in the config wizard for the optional items</li>
<li>A large step towards rclone backends being usable in other go software</li>
<li>Allow on the fly remotes with :backend: syntax</li>
</ul></li>
<li>Stats revamp
<ul>
<li>Add <code>--progress</code>/<code>-P</code> flag to show interactive progress (Nick Craig-Wood)</li>
<li>Show the total progress of the sync in the stats (Nick Craig-Wood)</li>
<li>Add <code>--stats-one-line</code> flag for single line stats (Nick Craig-Wood)</li>
</ul></li>
<li>Added weekday schedule into <code>--bwlimit</code> (Mateusz)</li>
<li>lsjson: Add option to show the original object IDs (Fabian Möller)</li>
<li>serve webdav: Make Content-Type without reading the file and add <code>--etag-hash</code> (Nick Craig-Wood)</li>
<li>build
<ul>
<li>Build macOS with native compiler (Nick Craig-Wood)</li>
<li>Update to use go1.11 for the build (Nick Craig-Wood)</li>
</ul></li>
<li>rc
<ul>
<li>Added core/stats to return the stats (reddi1)</li>
</ul></li>
<li><code>version --check</code>: Prints the current release and beta versions (Nick Craig-Wood)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>accounting
<ul>
<li>Fix time to completion estimates (Nick Craig-Wood)</li>
<li>Fix moving average speed for file stats (Nick Craig-Wood)</li>
</ul></li>
<li>config: Fix error reading password from piped input (Nick Craig-Wood)</li>
<li>move: Fix <code>--delete-empty-src-dirs</code> flag to delete all empty dirs on move (ishuah)</li>
</ul></li>
<li>Mount
<ul>
<li>Implement <code>--daemon-timeout</code> flag for OSXFUSE (Nick Craig-Wood)</li>
<li>Fix mount <code>--daemon</code> not working with encrypted config (Alex Chen)</li>
<li>Clip the number of blocks to 2^32-1 on macOS - fixes borg backup (Nick Craig-Wood)</li>
</ul></li>
<li>VFS
<ul>
<li>Enable vfs-read-chunk-size by default (Fabian Möller)</li>
<li>Add the vfs/refresh rc command (Fabian Möller)</li>
<li>Add non recursive mode to vfs/refresh rc command (Fabian Möller)</li>
<li>Try to seek buffer on read only files (Fabian Möller)</li>
</ul></li>
<li>Local
<ul>
<li>Fix crash when deprecated <code>--local-no-unicode-normalization</code> is supplied (Nick Craig-Wood)</li>
<li>Fix mkdir error when trying to copy files to the root of a drive on windows (Nick Craig-Wood)</li>
</ul></li>
<li>Cache
<ul>
<li>Fix nil pointer deref when using lsjson on cached directory (Nick Craig-Wood)</li>
<li>Fix nil pointer deref for occasional crash on playback (Nick Craig-Wood)</li>
</ul></li>
<li>Crypt
<ul>
<li>Fix accounting when checking hashes on upload (Nick Craig-Wood)</li>
</ul></li>
<li>Amazon Cloud Drive
<ul>
<li>Make very clear in the docs that rclone has no ACD keys (Nick Craig-Wood)</li>
</ul></li>
<li>Azure Blob
<ul>
<li>Add connection string and SAS URL auth (Nick Craig-Wood)</li>
<li>List the container to see if it exists (Nick Craig-Wood)</li>
<li>Port new Azure Blob Storage SDK (sandeepkru)</li>
<li>Added blob tier, tier between Hot, Cool and Archive. (sandeepkru)</li>
<li>Remove leading / from paths (Nick Craig-Wood)</li>
</ul></li>
<li>B2
<ul>
<li>Support Application Keys (Nick Craig-Wood)</li>
<li>Remove leading / from paths (Nick Craig-Wood)</li>
</ul></li>
<li>Box
<ul>
<li>Fix upload of &gt; 2GB files on 32 bit platforms (Nick Craig-Wood)</li>
<li>Make <code>--box-commit-retries</code> flag defaulting to 100 to fix large uploads (Nick Craig-Wood)</li>
</ul></li>
<li>Drive
<ul>
<li>Add <code>--drive-keep-revision-forever</code> flag (lewapm)</li>
<li>Handle gdocs when filtering file names in list (Fabian Möller)</li>
<li>Support using <code>--fast-list</code> for large speedups (Fabian Möller)</li>
</ul></li>
<li>FTP
<ul>
<li>Fix Put mkParentDir failed: 521 for BunnyCDN (Nick Craig-Wood)</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Fix index out of range error with <code>--fast-list</code> (Nick Craig-Wood)</li>
</ul></li>
<li>Jottacloud
<ul>
<li>Fix MD5 error check (Oliver Heyme)</li>
<li>Handle empty time values (Martin Polden)</li>
<li>Calculate missing MD5s (Oliver Heyme)</li>
<li>Docs, fixes and tests for MD5 calculation (Nick Craig-Wood)</li>
<li>Add optional MimeTyper interface. (Sebastian Bünger)</li>
<li>Implement optional About interface (for <code>df</code> support). (Sebastian Bünger)</li>
</ul></li>
<li>Mega
<ul>
<li>Wait for events instead of arbitrary sleeping (Nick Craig-Wood)</li>
<li>Add <code>--mega-hard-delete</code> flag (Nick Craig-Wood)</li>
<li>Fix failed logins with upper case chars in email (Nick Craig-Wood)</li>
</ul></li>
<li>Onedrive
<ul>
<li>Shared folder support (Yoni Jah)</li>
<li>Implement DirMove (Cnly)</li>
<li>Fix rmdir sometimes deleting directories with contents (Nick Craig-Wood)</li>
</ul></li>
<li>Pcloud
<ul>
<li>Delete half uploaded files on upload error (Nick Craig-Wood)</li>
</ul></li>
<li>Qingstor
<ul>
<li>Remove leading / from paths (Nick Craig-Wood)</li>
</ul></li>
<li>S3
<ul>
<li>Fix index out of range error with <code>--fast-list</code> (Nick Craig-Wood)</li>
<li>Add <code>--s3-force-path-style</code> (Nick Craig-Wood)</li>
<li>Add support for KMS Key ID (bsteiss)</li>
<li>Remove leading / from paths (Nick Craig-Wood)</li>
</ul></li>
<li>Swift
<ul>
<li>Add <code>storage_policy</code> (Ruben Vandamme)</li>
<li>Make it so just <code>storage_url</code> or <code>auth_token</code> can be overidden (Nick Craig-Wood)</li>
<li>Fix server side copy bug for unusal file names (Nick Craig-Wood)</li>
<li>Remove leading / from paths (Nick Craig-Wood)</li>
</ul></li>
<li>WebDAV
<ul>
<li>Ensure we call MKCOL with a URL with a trailing / for QNAP interop (Nick Craig-Wood)</li>
<li>If root ends with / then dont check if it is a file (Nick Craig-Wood)</li>
<li>Dont accept redirects when reading metadata (Nick Craig-Wood)</li>
<li>Add bearer token (Macaroon) support for dCache (Nick Craig-Wood)</li>
<li>Document dCache and Macaroons (Onno Zweers)</li>
<li>Sharepoint recursion with different depth (Henning)</li>
<li>Attempt to remove failed uploads (Nick Craig-Wood)</li>
</ul></li>
<li>Yandex
<ul>
<li>Fix listing/deleting files in the root (Nick Craig-Wood)</li>
</ul></li>
</ul>
<h2 id="v1.42---2018-06-16">v1.42 - 2018-06-16</h2>
<ul>
<li>New backends
<ul>
<li>OpenDrive (Oliver Heyme, Jakub Karlicek, ncw)</li>
</ul></li>
<li>New commands
<ul>
<li>deletefile command (Filip Bartodziej)</li>
</ul></li>
<li>New Features
<ul>
<li>copy, move: Copy single files directly, dont use <code>--files-from</code> work-around
<ul>
<li>this makes them much more efficient</li>
</ul></li>
<li>Implement <code>--max-transfer</code> flag to quit transferring at a limit
<ul>
<li>make exit code 8 for <code>--max-transfer</code> exceeded</li>
</ul></li>
<li>copy: copy empty source directories to destination (Ishuah Kariuki)</li>
<li>check: Add <code>--one-way</code> flag (Kasper Byrdal Nielsen)</li>
<li>Add siginfo handler for macOS for ctrl-T stats (kubatasiemski)</li>
<li>rc
<ul>
<li>add core/gc to run a garbage collection on demand</li>
<li>enable go profiling by default on the <code>--rc</code> port</li>
<li>return error from remote on failure</li>
</ul></li>
<li>lsf
<ul>
<li>Add <code>--absolute</code> flag to add a leading / onto path names</li>
<li>Add <code>--csv</code> flag for compliant CSV output</li>
<li>Add m format specifier to show the MimeType</li>
<li>Implement i format for showing object ID</li>
</ul></li>
<li>lsjson
<ul>
<li>Add MimeType to the output</li>
<li>Add ID field to output to show Object ID</li>
</ul></li>
<li>Add <code>--retries-sleep</code> flag (Benjamin Joseph Dag)</li>
<li>Oauth tidy up web page and error handling (Henning Surmeier)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Password prompt output with <code>--log-file</code> fixed for unix (Filip Bartodziej)</li>
<li>Calculate ModifyWindow each time on the fly to fix various problems (Stefan Breunig)</li>
</ul></li>
<li>Mount
<ul>
<li>Only print “File.rename error” if there actually is an error (Stefan Breunig)</li>
<li>Delay rename if file has open writers instead of failing outright (Stefan Breunig)</li>
<li>Ensure atexit gets run on interrupt</li>
<li>macOS enhancements
<ul>
<li>Make <code>--noappledouble</code> <code>--noapplexattr</code></li>
<li>Add <code>--volname</code> flag and remove special chars from it</li>
<li>Make Get/List/Set/Remove xattr return ENOSYS for efficiency</li>
<li>Make <code>--daemon</code> work for macOS without CGO</li>
</ul></li>
</ul></li>
<li>VFS
<ul>
<li>Add <code>--vfs-read-chunk-size</code> and <code>--vfs-read-chunk-size-limit</code> (Fabian Möller)</li>
<li>Fix ChangeNotify for new or changed folders (Fabian Möller)</li>
</ul></li>
<li>Local
<ul>
<li>Fix symlink/junction point directory handling under Windows
<ul>
<li><strong>NB</strong> you will need to add <code>-L</code> to your command line to copy files with reparse points</li>
</ul></li>
</ul></li>
<li>Cache
<ul>
<li>Add non cached dirs on notifications (Remus Bunduc)</li>
<li>Allow root to be expired from rc (Remus Bunduc)</li>
<li>Clean remaining empty folders from temp upload path (Remus Bunduc)</li>
<li>Cache lists using batch writes (Remus Bunduc)</li>
<li>Use secure websockets for HTTPS Plex addresses (John Clayton)</li>
<li>Reconnect plex websocket on failures (Remus Bunduc)</li>
<li>Fix panic when running without plex configs (Remus Bunduc)</li>
<li>Fix root folder caching (Remus Bunduc)</li>
</ul></li>
<li>Crypt
<ul>
<li>Check the crypted hash of files when uploading for extra data security</li>
</ul></li>
<li>Dropbox
<ul>
<li>Make Dropbox for business folders accessible using an initial <code>/</code> in the path</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Low level retry all operations if necessary</li>
</ul></li>
<li>Google Drive
<ul>
<li>Add <code>--drive-acknowledge-abuse</code> to download flagged files</li>
<li>Add <code>--drive-alternate-export</code> to fix large doc export</li>
<li>Dont attempt to choose Team Drives when using rclone config create</li>
<li>Fix change list polling with team drives</li>
<li>Fix ChangeNotify for folders (Fabian Möller)</li>
<li>Fix about (and df on a mount) for team drives</li>
</ul></li>
<li>Onedrive
<ul>
<li>Errorhandler for onedrive for business requests (Henning Surmeier)</li>
</ul></li>
<li>S3
<ul>
<li>Adjust upload concurrency with <code>--s3-upload-concurrency</code> (themylogin)</li>
<li>Fix <code>--s3-chunk-size</code> which was always using the minimum</li>
</ul></li>
<li>SFTP
<ul>
<li>Add <code>--ssh-path-override</code> flag (Piotr Oleszczyk)</li>
<li>Fix slow downloads for long latency connections</li>
</ul></li>
<li>Webdav
<ul>
<li>Add workarounds for biz.mail.ru</li>
<li>Ignore Reason-Phrase in status line to fix 4shared (Rodrigo)</li>
<li>Better error message generation</li>
</ul></li>
</ul>
<h2 id="v1.41---2018-04-28">v1.41 - 2018-04-28</h2>
<ul>
<li>New backends
<ul>
<li>Mega support added</li>
<li>Webdav now supports SharePoint cookie authentication (hensur)</li>
</ul></li>
<li>New commands
<ul>
<li>link: create public link to files and folders (Stefan Breunig)</li>
<li>about: gets quota info from a remote (a-roussos, ncw)</li>
<li>hashsum: a generic tool for any hash to produce md5sum like output</li>
</ul></li>
<li>New Features
<ul>
<li>lsd: Add -R flag and fix and update docs for all ls commands</li>
<li>ncdu: added a “refresh” key - CTRL-L (Keith Goldfarb)</li>
<li>serve restic: Add append-only mode (Steve Kriss)</li>
<li>serve restic: Disallow overwriting files in append-only mode (Alexander Neumann)</li>
<li>serve restic: Print actual listener address (Matt Holt)</li>
<li>size: Add json flag (Matthew Holt)</li>
<li>sync: implement ignore-errors (Mateusz Pabian)</li>
<li>dedupe: Add dedupe largest functionality (Richard Yang)</li>
<li>fs: Extend SizeSuffix to include TB and PB for rclone about</li>
<li>fs: add dump goroutines and dump openfiles for debugging</li>
<li>rc: implement core/memstats to print internal memory usage info</li>
<li>rc: new call rc/pid (Michael P. Dubner)</li>
</ul></li>
<li>Compile
<ul>
<li>Drop support for go1.6</li>
</ul></li>
<li>Release
<ul>
<li>Fix <code>make tarball</code> (Chih-Hsuan Yen)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>filter: fix min-age and max-age together check</li>
<li>fs: limit MaxIdleConns and MaxIdleConnsPerHost in transport</li>
<li>lsd,lsf: make sure all times we output are in local time</li>
<li>rc: fix setting bwlimit to unlimited</li>
<li>rc: take note of the rc-addr flag too as per the docs</li>
</ul></li>
<li>Mount
<ul>
<li>Use About to return the correct disk total/used/free (eg in <code>df</code>)</li>
<li>Set <code>--attr-timeout default</code> to <code>1s</code> - fixes:
<ul>
<li>rclone using too much memory</li>
<li>rclone not serving files to samba</li>
<li>excessive time listing directories</li>
</ul></li>
<li>Fix <code>df -i</code> (upstream fix)</li>
</ul></li>
<li>VFS
<ul>
<li>Filter files <code>.</code> and <code>..</code> from directory listing</li>
<li>Only make the VFS cache if vfs-cache-mode &gt; Off</li>
</ul></li>
<li>Local
<ul>
<li>Add local-no-check-updated to disable updated file checks</li>
<li>Retry remove on Windows sharing violation error</li>
</ul></li>
<li>Cache
<ul>
<li>Flush the memory cache after close</li>
<li>Purge file data on notification</li>
<li>Always forget parent dir for notifications</li>
<li>Integrate with Plex websocket</li>
<li>Add rc cache/stats (seuffert)</li>
<li>Add info log on notification</li>
</ul></li>
<li>Box
<ul>
<li>Fix failure reading large directories - parse file/directory size as float</li>
</ul></li>
<li>Dropbox
<ul>
<li>Fix crypt+obfuscate on dropbox</li>
<li>Fix repeatedly uploading the same files</li>
</ul></li>
<li>FTP
<ul>
<li>Work around strange response from box FTP server</li>
<li>More workarounds for FTP servers to fix mkParentDir error</li>
<li>Fix no error on listing non-existent directory</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Add service_account_credentials (Matt Holt)</li>
<li>Detect bucket presence by listing it - minimises permissions needed</li>
<li>Ignore zero length directory markers</li>
</ul></li>
<li>Google Drive
<ul>
<li>Add service_account_credentials (Matt Holt)</li>
<li>Fix directory move leaving a hardlinked directory behind</li>
<li>Return proper google errors when Opening files</li>
<li>When initialized with a filepath, optional features used incorrect root path (Stefan Breunig)</li>
</ul></li>
<li>HTTP
<ul>
<li>Fix sync for servers which dont return Content-Length in HEAD</li>
</ul></li>
<li>Onedrive
<ul>
<li>Add QuickXorHash support for OneDrive for business</li>
<li>Fix socket leak in multipart session upload</li>
</ul></li>
<li>S3
<ul>
<li>Look in S3 named profile files for credentials</li>
<li>Add <code>--s3-disable-checksum</code> to disable checksum uploading (Chris Redekop)</li>
<li>Hierarchical configuration support (Giri Badanahatti)</li>
<li>Add in config for all the supported S3 providers</li>
<li>Add One Zone Infrequent Access storage class (Craig Rachel)</li>
<li>Add use-server-modtime support (Peter Baumgartner)</li>
<li>Add s3-chunk-size option to control multipart uploads</li>
<li>Ignore zero length directory markers</li>
</ul></li>
<li>SFTP
<ul>
<li>Update docs to match code, fix typos and clarify disable_hashcheck prompt (Michael G. Noll)</li>
<li>Update docs with Synology quirks</li>
<li>Fail soft with a debug on hash failure</li>
</ul></li>
<li>Swift
<ul>
<li>Add use-server-modtime support (Peter Baumgartner)</li>
</ul></li>
<li>Webdav
<ul>
<li>Support SharePoint cookie authentication (hensur)</li>
<li>Strip leading and trailing / off root</li>
</ul></li>
</ul>
<h2 id="v1.40---2018-03-19">v1.40 - 2018-03-19</h2>
<ul>
<li>New backends
<ul>
<li>Alias backend to create aliases for existing remote names (Fabian Möller)</li>
</ul></li>
<li>New commands
<ul>
<li><code>lsf</code>: list for parsing purposes (Jakub Tasiemski)
<ul>
<li>by default this is a simple non recursive list of files and directories</li>
<li>it can be configured to add more info in an easy to parse way</li>
</ul></li>
<li><code>serve restic</code>: for serving a remote as a Restic REST endpoint
<ul>
<li>This enables restic to use any backends that rclone can access</li>
<li>Thanks Alexander Neumann for help, patches and review</li>
</ul></li>
<li><code>rc</code>: enable the remote control of a running rclone
<ul>
<li>The running rclone must be started with rc and related flags.</li>
<li>Currently there is support for bwlimit, and flushing for mount and cache.</li>
</ul></li>
</ul></li>
<li>New Features
<ul>
<li><code>--max-delete</code> flag to add a delete threshold (Bjørn Erik Pedersen)</li>
<li>All backends now support RangeOption for ranged Open
<ul>
<li><code>cat</code>: Use RangeOption for limited fetches to make more efficient</li>
<li><code>cryptcheck</code>: make reading of nonce more efficient with RangeOption</li>
</ul></li>
<li>serve http/webdav/restic
<ul>
<li>support SSL/TLS</li>
<li>add <code>--user</code> <code>--pass</code> and <code>--htpasswd</code> for authentication</li>
</ul></li>
<li><code>copy</code>/<code>move</code>: detect file size change during copy/move and abort transfer (ishuah)</li>
<li><code>cryptdecode</code>: added option to return encrypted file names. (ishuah)</li>
<li><code>lsjson</code>: add <code>--encrypted</code> to show encrypted name (Jakub Tasiemski)</li>
<li>Add <code>--stats-file-name-length</code> to specify the printed file name length for stats (Will Gunn)</li>
</ul></li>
<li>Compile
<ul>
<li>Code base was shuffled and factored
<ul>
<li>backends moved into a backend directory</li>
<li>large packages split up</li>
<li>See the CONTRIBUTING.md doc for info as to what lives where now</li>
</ul></li>
<li>Update to using go1.10 as the default go version</li>
<li>Implement daily <a href="https://pub.rclone.org/integration-tests/">full integration tests</a></li>
</ul></li>
<li>Release
<ul>
<li>Include a source tarball and sign it and the binaries</li>
<li>Sign the git tags as part of the release process</li>
<li>Add .deb and .rpm packages as part of the build</li>
<li>Make a beta release for all branches on the main repo (but not pull requests)</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>config: fixes errors on non existing config by loading config file only on first access</li>
<li>config: retry saving the config after failure (Mateusz)</li>
<li>sync: when using <code>--backup-dir</code> dont delete files if we cant set their modtime
<ul>
<li>this fixes odd behaviour with Dropbox and <code>--backup-dir</code></li>
</ul></li>
<li>fshttp: fix idle timeouts for HTTP connections</li>
<li><code>serve http</code>: fix serving files with : in - fixes</li>
<li>Fix <code>--exclude-if-present</code> to ignore directories which it doesnt have permission for (Iakov Davydov)</li>
<li>Make accounting work properly with crypt and b2</li>
<li>remove <code>--no-traverse</code> flag because it is obsolete</li>
</ul></li>
<li>Mount
<ul>
<li>Add <code>--attr-timeout</code> flag to control attribute caching in kernel
<ul>
<li>this now defaults to 0 which is correct but less efficient</li>
<li>see <a href="/commands/rclone_mount/#attribute-caching">the mount docs</a> for more info</li>
</ul></li>
<li>Add <code>--daemon</code> flag to allow mount to run in the background (ishuah)</li>
<li>Fix: Return ENOSYS rather than EIO on attempted link
<ul>
<li>This fixes FileZilla accessing an rclone mount served over sftp.</li>
</ul></li>
<li>Fix setting modtime twice</li>
<li>Mount tests now run on CI for Linux (mount &amp; cmount)/Mac/Windows</li>
<li>Many bugs fixed in the VFS layer - see below</li>
</ul></li>
<li>VFS
<ul>
<li>Many fixes for <code>--vfs-cache-mode</code> writes and above
<ul>
<li>Update cached copy if we know it has changed (fixes stale data)</li>
<li>Clean path names before using them in the cache</li>
<li>Disable cache cleaner if <code>--vfs-cache-poll-interval=0</code></li>
<li>Fill and clean the cache immediately on startup</li>
</ul></li>
<li>Fix Windows opening every file when it stats the file</li>
<li>Fix applying modtime for an open Write Handle</li>
<li>Fix creation of files when truncating</li>
<li>Write 0 bytes when flushing unwritten handles to avoid race conditions in FUSE</li>
<li>Downgrade “poll-interval is not supported” message to Info</li>
<li>Make OpenFile and friends return EINVAL if O_RDONLY and O_TRUNC</li>
</ul></li>
<li>Local
<ul>
<li>Downgrade “invalid cross-device link: trying copy” to debug</li>
<li>Make DirMove return fs.ErrorCantDirMove to allow fallback to Copy for cross device</li>
<li>Fix race conditions updating the hashes</li>
</ul></li>
<li>Cache
<ul>
<li>Add support for polling - cache will update when remote changes on supported backends</li>
<li>Reduce log level for Plex api</li>
<li>Fix dir cache issue</li>
<li>Implement <code>--cache-db-wait-time</code> flag</li>
<li>Improve efficiency with RangeOption and RangeSeek</li>
<li>Fix dirmove with temp fs enabled</li>
<li>Notify vfs when using temp fs</li>
<li>Offline uploading</li>
<li>Remote control support for path flushing</li>
</ul></li>
<li>Amazon cloud drive
<ul>
<li>Rclone no longer has any working keys - disable integration tests</li>
<li>Implement DirChangeNotify to notify cache/vfs/mount of changes</li>
</ul></li>
<li>Azureblob
<ul>
<li>Dont check for bucket/container presense if listing was OK
<ul>
<li>this makes rclone do one less request per invocation</li>
</ul></li>
<li>Improve accounting for chunked uploads</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>Dont check for bucket/container presense if listing was OK
<ul>
<li>this makes rclone do one less request per invocation</li>
</ul></li>
</ul></li>
<li>Box
<ul>
<li>Improve accounting for chunked uploads</li>
</ul></li>
<li>Dropbox
<ul>
<li>Fix custom oauth client parameters</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Dont check for bucket/container presense if listing was OK
<ul>
<li>this makes rclone do one less request per invocation</li>
</ul></li>
</ul></li>
<li>Google Drive
<ul>
<li>Migrate to api v3 (Fabian Möller)</li>
<li>Add scope configuration and root folder selection</li>
<li>Add <code>--drive-impersonate</code> for service accounts
<ul>
<li>thanks to everyone who tested, explored and contributed docs</li>
</ul></li>
<li>Add <code>--drive-use-created-date</code> to use created date as modified date (nbuchanan)</li>
<li>Request the export formats only when required
<ul>
<li>This makes rclone quicker when there are no google docs</li>
</ul></li>
<li>Fix finding paths with latin1 chars (a workaround for a drive bug)</li>
<li>Fix copying of a single Google doc file</li>
<li>Fix <code>--drive-auth-owner-only</code> to look in all directories</li>
</ul></li>
<li>HTTP
<ul>
<li>Fix handling of directories with &amp; in</li>
</ul></li>
<li>Onedrive
<ul>
<li>Removed upload cutoff and always do session uploads
<ul>
<li>this stops the creation of multiple versions on business onedrive</li>
</ul></li>
<li>Overwrite object size value with real size when reading file. (Victor)
<ul>
<li>this fixes oddities when onedrive misreports the size of images</li>
</ul></li>
</ul></li>
<li>Pcloud
<ul>
<li>Remove unused chunked upload flag and code</li>
</ul></li>
<li>Qingstor
<ul>
<li>Dont check for bucket/container presense if listing was OK
<ul>
<li>this makes rclone do one less request per invocation</li>
</ul></li>
</ul></li>
<li>S3
<ul>
<li>Support hashes for multipart files (Chris Redekop)</li>
<li>Initial support for IBM COS (S3) (Giri Badanahatti)</li>
<li>Update docs to discourage use of v2 auth with CEPH and others</li>
<li>Dont check for bucket/container presense if listing was OK
<ul>
<li>this makes rclone do one less request per invocation</li>
</ul></li>
<li>Fix server side copy and set modtime on files with + in</li>
</ul></li>
<li>SFTP
<ul>
<li>Add option to disable remote hash check command execution (Jon Fautley)</li>
<li>Add <code>--sftp-ask-password</code> flag to prompt for password when needed (Leo R. Lundgren)</li>
<li>Add <code>set_modtime</code> configuration option</li>
<li>Fix following of symlinks</li>
<li>Fix reading config file outside of Fs setup</li>
<li>Fix reading $USER in username fallback not $HOME</li>
<li>Fix running under crontab - Use correct OS way of reading username</li>
</ul></li>
<li>Swift
<ul>
<li>Fix refresh of authentication token
<ul>
<li>in v1.39 a bug was introduced which ignored new tokens - this fixes it</li>
</ul></li>
<li>Fix extra HEAD transaction when uploading a new file</li>
<li>Dont check for bucket/container presense if listing was OK
<ul>
<li>this makes rclone do one less request per invocation</li>
</ul></li>
</ul></li>
<li>Webdav
<ul>
<li>Add new time formats to support mydrive.ch and others</li>
</ul></li>
</ul>
<h2 id="v1.39---2017-12-23">v1.39 - 2017-12-23</h2>
<ul>
<li>New backends
<ul>
<li>WebDAV
<ul>
<li>tested with nextcloud, owncloud, put.io and others!</li>
</ul></li>
<li>Pcloud</li>
<li>cache - wraps a cache around other backends (Remus Bunduc)
<ul>
<li>useful in combination with mount</li>
<li>NB this feature is in beta so use with care</li>
</ul></li>
</ul></li>
<li>New commands
<ul>
<li>serve command with subcommands:
<ul>
<li>serve webdav: this implements a webdav server for any rclone remote.</li>
<li>serve http: command to serve a remote over HTTP</li>
</ul></li>
<li>config: add sub commands for full config file management
<ul>
<li>create/delete/dump/edit/file/password/providers/show/update</li>
</ul></li>
<li>touch: to create or update the timestamp of a file (Jakub Tasiemski)</li>
</ul></li>
<li>New Features
<ul>
<li>curl install for rclone (Filip Bartodziej)</li>
<li>stats now shows percentage, size, rate and ETA in condensed form (Ishuah Kariuki)</li>
<li>exclude-if-present to exclude a directory if a file is present (Iakov Davydov)</li>
<li>rmdirs: add leave-root flag (lewpam)</li>
<li>move: add delete-empty-src-dirs flag to remove dirs after move (Ishuah Kariuki)</li>
<li>Add dump flag, introduce dump requests, responses and remove dump-auth, dump-filters
<ul>
<li>Obscure X-Auth-Token: from headers when dumping too</li>
</ul></li>
<li>Document and implement exit codes for different failure modes (Ishuah Kariuki)</li>
</ul></li>
<li>Compile</li>
<li>Bug Fixes
<ul>
<li>Retry lots more different types of errors to make multipart transfers more reliable</li>
<li>Save the config before asking for a token, fixes disappearing oauth config</li>
<li>Warn the user if include and exclude are used together (Ernest Borowski)</li>
<li>Fix duplicate files (eg on Google drive) causing spurious copies</li>
<li>Allow trailing and leading whitespace for passwords (Jason Rose)</li>
<li>ncdu: fix crashes on empty directories</li>
<li>rcat: fix goroutine leak</li>
<li>moveto/copyto: Fix to allow copying to the same name</li>
</ul></li>
<li>Mount
<ul>
<li>vfs-cache mode to make writes into mounts more reliable.
<ul>
<li>this requires caching files on the disk (see cache-dir)</li>
<li>As this is a new feature, use with care</li>
</ul></li>
<li>Use sdnotify to signal systemd the mount is ready (Fabian Möller)</li>
<li>Check if directory is not empty before mounting (Ernest Borowski)</li>
</ul></li>
<li>Local
<ul>
<li>Add error message for cross file system moves</li>
<li>Fix equality check for times</li>
</ul></li>
<li>Dropbox
<ul>
<li>Rework multipart upload
<ul>
<li>buffer the chunks when uploading large files so they can be retried</li>
<li>change default chunk size to 48MB now we are buffering them in memory</li>
<li>retry every error after the first chunk is done successfully</li>
</ul></li>
<li>Fix error when renaming directories</li>
</ul></li>
<li>Swift
<ul>
<li>Fix crash on bad authentication</li>
</ul></li>
<li>Google Drive
<ul>
<li>Add service account support (Tim Cooijmans)</li>
</ul></li>
<li>S3
<ul>
<li>Make it work properly with Digital Ocean Spaces (Andrew Starr-Bochicchio)</li>
<li>Fix crash if a bad listing is received</li>
<li>Add support for ECS task IAM roles (David Minor)</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>Fix multipart upload retries</li>
<li>Fix hard-delete to make it work 100% of the time</li>
</ul></li>
<li>Swift
<ul>
<li>Allow authentication with storage URL and auth key (Giovanni Pizzi)</li>
<li>Add new fields for swift configuration to support IBM Bluemix Swift (Pierre Carlson)</li>
<li>Add OS_TENANT_ID and OS_USER_ID to config</li>
<li>Allow configs with user id instead of user name</li>
<li>Check if swift segments container exists before creating (John Leach)</li>
<li>Fix memory leak in swift transfers (upstream fix)</li>
</ul></li>
<li>SFTP
<ul>
<li>Add option to enable the use of aes128-cbc cipher (Jon Fautley)</li>
</ul></li>
<li>Amazon cloud drive
<ul>
<li>Fix download of large files failing with “Only one auth mechanism allowed”</li>
</ul></li>
<li>crypt
<ul>
<li>Option to encrypt directory names or leave them intact</li>
<li>Implement DirChangeNotify (Fabian Möller)</li>
</ul></li>
<li>onedrive
<ul>
<li>Add option to choose resourceURL during setup of OneDrive Business account if more than one is available for user</li>
</ul></li>
</ul>
<h2 id="v1.38---2017-09-30">v1.38 - 2017-09-30</h2>
<ul>
<li>New backends
<ul>
<li>Azure Blob Storage (thanks Andrei Dragomir)</li>
<li>Box</li>
<li>Onedrive for Business (thanks Oliver Heyme)</li>
<li>QingStor from QingCloud (thanks wuyu)</li>
</ul></li>
<li>New commands
<ul>
<li><code>rcat</code> - read from standard input and stream upload</li>
<li><code>tree</code> - shows a nicely formatted recursive listing</li>
<li><code>cryptdecode</code> - decode crypted file names (thanks ishuah)</li>
<li><code>config show</code> - print the config file</li>
<li><code>config file</code> - print the config file location</li>
</ul></li>
<li>New Features
<ul>
<li>Empty directories are deleted on <code>sync</code></li>
<li><code>dedupe</code> - implement merging of duplicate directories</li>
<li><code>check</code> and <code>cryptcheck</code> made more consistent and use less memory</li>
<li><code>cleanup</code> for remaining remotes (thanks ishuah)</li>
<li><code>--immutable</code> for ensuring that files dont change (thanks Jacob McNamee)</li>
<li><code>--user-agent</code> option (thanks Alex McGrath Kraak)</li>
<li><code>--disable</code> flag to disable optional features</li>
<li><code>--bind</code> flag for choosing the local addr on outgoing connections</li>
<li>Support for zsh auto-completion (thanks bpicode)</li>
<li>Stop normalizing file names but do a normalized compare in <code>sync</code></li>
</ul></li>
<li>Compile
<ul>
<li>Update to using go1.9 as the default go version</li>
<li>Remove snapd build due to maintenance problems</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Improve retriable error detection which makes multipart uploads better</li>
<li>Make <code>check</code> obey <code>--ignore-size</code></li>
<li>Fix bwlimit toggle in conjunction with schedules (thanks cbruegg)</li>
<li><code>config</code> ensures newly written config is on the same mount</li>
</ul></li>
<li>Local
<ul>
<li>Revert to copy when moving file across file system boundaries</li>
<li><code>--skip-links</code> to suppress symlink warnings (thanks Zhiming Wang)</li>
</ul></li>
<li>Mount
<ul>
<li>Re-use <code>rcat</code> internals to support uploads from all remotes</li>
</ul></li>
<li>Dropbox
<ul>
<li>Fix “entry doesnt belong in directory” error</li>
<li>Stop using deprecated API methods</li>
</ul></li>
<li>Swift
<ul>
<li>Fix server side copy to empty container with <code>--fast-list</code></li>
</ul></li>
<li>Google Drive
<ul>
<li>Change the default for <code>--drive-use-trash</code> to <code>true</code></li>
</ul></li>
<li>S3
<ul>
<li>Set session token when using STS (thanks Girish Ramakrishnan)</li>
<li>Glacier docs and error messages (thanks Jan Varho)</li>
<li>Read 1000 (not 1024) items in dir listings to fix Wasabi</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>Fix SHA1 mismatch when downloading files with no SHA1</li>
<li>Calculate missing hashes on the fly instead of spooling</li>
<li><code>--b2-hard-delete</code> to permanently delete (not hide) files (thanks John Papandriopoulos)</li>
</ul></li>
<li>Hubic
<ul>
<li>Fix creating containers - no longer have to use the <code>default</code> container</li>
</ul></li>
<li>Swift
<ul>
<li>Optionally configure from a standard set of OpenStack environment vars</li>
<li>Add <code>endpoint_type</code> config</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Fix bucket creation to work with limited permission users</li>
</ul></li>
<li>SFTP
<ul>
<li>Implement connection pooling for multiple ssh connections</li>
<li>Limit new connections per second</li>
<li>Add support for MD5 and SHA1 hashes where available (thanks Christian Brüggemann)</li>
</ul></li>
<li>HTTP
<ul>
<li>Fix URL encoding issues</li>
<li>Fix directories with <code>:</code> in</li>
<li>Fix panic with URL encoded content</li>
</ul></li>
</ul>
<h2 id="v1.37---2017-07-22">v1.37 - 2017-07-22</h2>
<ul>
<li>New backends
<ul>
<li>FTP - thanks to Antonio Messina</li>
<li>HTTP - thanks to Vasiliy Tolstov</li>
</ul></li>
<li>New commands
<ul>
<li>rclone ncdu - for exploring a remote with a text based user interface.</li>
<li>rclone lsjson - for listing with a machine readable output</li>
<li>rclone dbhashsum - to show Dropbox style hashes of files (local or Dropbox)</li>
</ul></li>
<li>New Features
<ul>
<li>Implement fast-list flag
<ul>
<li>This allows remotes to list recursively if they can</li>
<li>This uses less transactions (important if you pay for them)</li>
<li>This may or may not be quicker</li>
<li>This will use more memory as it has to hold the listing in memory</li>
<li>old-sync-method deprecated - the remaining uses are covered by fast-list</li>
<li>This involved a major re-write of all the listing code</li>
</ul></li>
<li>Add tpslimit and tpslimit-burst to limit transactions per second
<ul>
<li>this is useful in conjuction with <code>rclone mount</code> to limit external apps</li>
</ul></li>
<li>Add stats-log-level so can see stats without -v</li>
<li>Print password prompts to stderr - Hraban Luyat</li>
<li>Warn about duplicate files when syncing</li>
<li>Oauth improvements
<ul>
<li>allow auth_url and token_url to be set in the config file</li>
<li>Print redirection URI if using own credentials.</li>
</ul></li>
<li>Dont Mkdir at the start of sync to save transactions</li>
</ul></li>
<li>Compile
<ul>
<li>Update build to go1.8.3</li>
<li>Require go1.6 for building rclone</li>
<li>Compile 386 builds with “GO386=387” for maximum compatibility</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Fix menu selection when no remotes</li>
<li>Config saving reworked to not kill the file if disk gets full</li>
<li>Dont delete remote if name does not change while renaming</li>
<li>moveto, copyto: report transfers and checks as per move and copy</li>
</ul></li>
<li>Local
<ul>
<li>Add local-no-unicode-normalization flag - Bob Potter</li>
</ul></li>
<li>Mount
<ul>
<li>Now supported on Windows using cgofuse and WinFsp - thanks to Bill Zissimopoulos for much help</li>
<li>Compare checksums on upload/download via FUSE</li>
<li>Unmount when program ends with SIGINT (Ctrl+C) or SIGTERM - Jérôme Vizcaino</li>
<li>On read only open of file, make open pending until first read</li>
<li>Make read-only reject modify operations</li>
<li>Implement ModTime via FUSE for remotes that support it</li>
<li>Allow modTime to be changed even before all writers are closed</li>
<li>Fix panic on renames</li>
<li>Fix hang on errored upload</li>
</ul></li>
<li>Crypt
<ul>
<li>Report the name:root as specified by the user</li>
<li>Add an “obfuscate” option for filename encryption - Stephen Harris</li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Fix initialization order for token renewer</li>
<li>Remove revoked credentials, allow oauth proxy config and update docs</li>
</ul></li>
<li>B2
<ul>
<li>Reduce minimum chunk size to 5MB</li>
</ul></li>
<li>Drive
<ul>
<li>Add team drive support</li>
<li>Reduce bandwidth by adding fields for partial responses - Martin Kristensen</li>
<li>Implement drive-shared-with-me flag to view shared with me files - Danny Tsai</li>
<li>Add drive-trashed-only to read only the files in the trash</li>
<li>Remove obsolete drive-full-list</li>
<li>Add missing seek to start on retries of chunked uploads</li>
<li>Fix stats accounting for upload</li>
<li>Convert / in names to a unicode equivalent ()</li>
<li>Poll for Google Drive changes when mounted</li>
</ul></li>
<li>OneDrive
<ul>
<li>Fix the uploading of files with spaces</li>
<li>Fix initialization order for token renewer</li>
<li>Display speeds accurately when uploading - Yoni Jah</li>
<li>Swap to using http://localhost:53682/ as redirect URL - Michael Ledin</li>
<li>Retry on token expired error, reset upload body on retry - Yoni Jah</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Add ability to specify location and storage class via config and command line - thanks gdm85</li>
<li>Create container if necessary on server side copy</li>
<li>Increase directory listing chunk to 1000 to increase performance</li>
<li>Obtain a refresh token for GCS - Steven Lu</li>
</ul></li>
<li>Yandex
<ul>
<li>Fix the name reported in log messages (was empty)</li>
<li>Correct error return for listing empty directory</li>
</ul></li>
<li>Dropbox
<ul>
<li>Rewritten to use the v2 API
<ul>
<li>Now supports ModTime
<ul>
<li>Can only set by uploading the file again</li>
<li>If you uploaded with an old rclone, rclone may upload everything again</li>
<li>Use <code>--size-only</code> or <code>--checksum</code> to avoid this</li>
</ul></li>
<li>Now supports the Dropbox content hashing scheme</li>
<li>Now supports low level retries</li>
</ul></li>
</ul></li>
<li>S3
<ul>
<li>Work around eventual consistency in bucket creation</li>
<li>Create container if necessary on server side copy</li>
<li>Add us-east-2 (Ohio) and eu-west-2 (London) S3 regions - Zahiar Ahmed</li>
</ul></li>
<li>Swift, Hubic
<ul>
<li>Fix zero length directory markers showing in the subdirectory listing
<ul>
<li>this caused lots of duplicate transfers</li>
</ul></li>
<li>Fix paged directory listings
<ul>
<li>this caused duplicate directory errors</li>
</ul></li>
<li>Create container if necessary on server side copy</li>
<li>Increase directory listing chunk to 1000 to increase performance</li>
<li>Make sensible error if the user forgets the container</li>
</ul></li>
<li>SFTP
<ul>
<li>Add support for using ssh key files</li>
<li>Fix under Windows</li>
<li>Fix ssh agent on Windows</li>
<li>Adapt to latest version of library - Igor Kharin</li>
</ul></li>
</ul>
<h2 id="v1.36---2017-03-18">v1.36 - 2017-03-18</h2>
<ul>
<li>New Features
<ul>
<li>SFTP remote (Jack Schmidt)</li>
<li>Re-implement sync routine to work a directory at a time reducing memory usage</li>
<li>Logging revamped to be more inline with rsync - now much quieter * -v only shows transfers * -vv is for full debug * syslog to log to syslog on capable platforms</li>
<li>Implement backup-dir and suffix</li>
<li>Implement track-renames (initial implementation by Bjørn Erik Pedersen)</li>
<li>Add time-based bandwidth limits (Lukas Loesche)</li>
<li>rclone cryptcheck: checks integrity of crypt remotes</li>
<li>Allow all config file variables and options to be set from environment variables</li>
<li>Add buffer-size parameter to control buffer size for copy</li>
<li>Make delete-after the default</li>
<li>Add ignore-checksum flag (fixed by Hisham Zarka)</li>
<li>rclone check: Add download flag to check all the data, not just hashes</li>
<li>rclone cat: add head, tail, offset, count and discard</li>
<li>rclone config: when choosing from a list, allow the value to be entered too</li>
<li>rclone config: allow rename and copy of remotes</li>
<li>rclone obscure: for generating encrypted passwords for rclones config (T.C. Ferguson)</li>
<li>Comply with XDG Base Directory specification (Dario Giovannetti)
<ul>
<li>this moves the default location of the config file in a backwards compatible way</li>
</ul></li>
<li>Release changes
<ul>
<li>Ubuntu snap support (Dedsec1)</li>
<li>Compile with go 1.8</li>
<li>MIPS/Linux big and little endian support</li>
</ul></li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Fix copyto copying things to the wrong place if the destination dir didnt exist</li>
<li>Fix parsing of remotes in moveto and copyto</li>
<li>Fix delete-before deleting files on copy</li>
<li>Fix files-from with an empty file copying everything</li>
<li>Fix sync: dont update mod times if dry-run set</li>
<li>Fix MimeType propagation</li>
<li>Fix filters to add ** rules to directory rules</li>
</ul></li>
<li>Local
<ul>
<li>Implement -L, copy-links flag to allow rclone to follow symlinks</li>
<li>Open files in write only mode so rclone can write to an rclone mount</li>
<li>Fix unnormalised unicode causing problems reading directories</li>
<li>Fix interaction between -x flag and max-depth</li>
</ul></li>
<li>Mount
<ul>
<li>Implement proper directory handling (mkdir, rmdir, renaming)</li>
<li>Make include and exclude filters apply to mount</li>
<li>Implement read and write async buffers - control with buffer-size</li>
<li>Fix fsync on for directories</li>
<li>Fix retry on network failure when reading off crypt</li>
</ul></li>
<li>Crypt
<ul>
<li>Add crypt-show-mapping to show encrypted file mapping</li>
<li>Fix crypt writer getting stuck in a loop
<ul>
<li><strong>IMPORTANT</strong> this bug had the potential to cause data corruption when
<ul>
<li>reading data from a network based remote and</li>
<li>writing to a crypt on Google Drive</li>
</ul></li>
<li>Use the cryptcheck command to validate your data if you are concerned</li>
<li>If syncing two crypt remotes, sync the unencrypted remote</li>
</ul></li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Fix panics on Move (rename)</li>
<li>Fix panic on token expiry</li>
</ul></li>
<li>B2
<ul>
<li>Fix inconsistent listings and rclone check</li>
<li>Fix uploading empty files with go1.8</li>
<li>Constrain memory usage when doing multipart uploads</li>
<li>Fix upload url not being refreshed properly</li>
</ul></li>
<li>Drive
<ul>
<li>Fix Rmdir on directories with trashed files</li>
<li>Fix “Ignoring unknown object” when downloading</li>
<li>Add drive-list-chunk</li>
<li>Add drive-skip-gdocs (Károly Oláh)</li>
</ul></li>
<li>OneDrive
<ul>
<li>Implement Move</li>
<li>Fix Copy
<ul>
<li>Fix overwrite detection in Copy</li>
<li>Fix waitForJob to parse errors correctly</li>
</ul></li>
<li>Use token renewer to stop auth errors on long uploads</li>
<li>Fix uploading empty files with go1.8</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Fix depth 1 directory listings</li>
</ul></li>
<li>Yandex
<ul>
<li>Fix single level directory listing</li>
</ul></li>
<li>Dropbox
<ul>
<li>Normalise the case for single level directory listings</li>
<li>Fix depth 1 listing</li>
</ul></li>
<li>S3
<ul>
<li>Added ca-central-1 region (Jon Yergatian)</li>
</ul></li>
</ul>
<h2 id="v1.35---2017-01-02">v1.35 - 2017-01-02</h2>
<ul>
<li>New Features
<ul>
<li>moveto and copyto commands for choosing a destination name on copy/move</li>
<li>rmdirs command to recursively delete empty directories</li>
<li>Allow repeated include/exclude/filter options</li>
<li>Only show transfer stats on commands which transfer stuff
<ul>
<li>show stats on any command using the <code>--stats</code> flag</li>
</ul></li>
<li>Allow overlapping directories in move when server side dir move is supported</li>
<li>Add stats-unit option - thanks Scott McGillivray</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Fix the config file being overwritten when two rclones are running</li>
<li>Make rclone lsd obey the filters properly</li>
<li>Fix compilation on mips</li>
<li>Fix not transferring files that dont differ in size</li>
<li>Fix panic on nil retry/fatal error</li>
</ul></li>
<li>Mount
<ul>
<li>Retry reads on error - should help with reliability a lot</li>
<li>Report the modification times for directories from the remote</li>
<li>Add bandwidth accounting and limiting (fixes bwlimit)</li>
<li>If stats provided will show stats and which files are transferring</li>
<li>Support R/W files if truncate is set.</li>
<li>Implement statfs interface so df works</li>
<li>Note that write is now supported on Amazon Drive</li>
<li>Report number of blocks in a file - thanks Stefan Breunig</li>
</ul></li>
<li>Crypt
<ul>
<li>Prevent the user pointing crypt at itself</li>
<li>Fix failed to authenticate decrypted block errors
<ul>
<li>these will now return the underlying unexpected EOF instead</li>
</ul></li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Add support for server side move and directory move - thanks Stefan Breunig</li>
<li>Fix nil pointer deref on size attribute</li>
</ul></li>
<li>B2
<ul>
<li>Use new prefix and delimiter parameters in directory listings
<ul>
<li>This makes max-depth 1 dir listings as used in mount much faster</li>
</ul></li>
<li>Reauth the account while doing uploads too - should help with token expiry</li>
</ul></li>
<li>Drive
<ul>
<li>Make DirMove more efficient and complain about moving the root</li>
<li>Create destination directory on Move()</li>
</ul></li>
</ul>
<h2 id="v1.34---2016-11-06">v1.34 - 2016-11-06</h2>
<ul>
<li>New Features
<ul>
<li>Stop single file and <code>--files-from</code> operations iterating through the source bucket.</li>
<li>Stop removing failed upload to cloud storage remotes</li>
<li>Make ContentType be preserved for cloud to cloud copies</li>
<li>Add support to toggle bandwidth limits via SIGUSR2 - thanks Marco Paganini</li>
<li><code>rclone check</code> shows count of hashes that couldnt be checked</li>
<li><code>rclone listremotes</code> command</li>
<li>Support linux/arm64 build - thanks Fredrik Fornwall</li>
<li>Remove <code>Authorization:</code> lines from <code>--dump-headers</code> output</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Ignore files with control characters in the names</li>
<li>Fix <code>rclone move</code> command
<ul>
<li>Delete src files which already existed in dst</li>
<li>Fix deletion of src file when dst file older</li>
</ul></li>
<li>Fix <code>rclone check</code> on crypted file systems</li>
<li>Make failed uploads not count as “Transferred”</li>
<li>Make sure high level retries show with <code>-q</code></li>
<li>Use a vendor directory with godep for repeatable builds</li>
</ul></li>
<li><code>rclone mount</code> - FUSE
<ul>
<li>Implement FUSE mount options
<ul>
<li><code>--no-modtime</code>, <code>--debug-fuse</code>, <code>--read-only</code>, <code>--allow-non-empty</code>, <code>--allow-root</code>, <code>--allow-other</code></li>
<li><code>--default-permissions</code>, <code>--write-back-cache</code>, <code>--max-read-ahead</code>, <code>--umask</code>, <code>--uid</code>, <code>--gid</code></li>
</ul></li>
<li>Add <code>--dir-cache-time</code> to control caching of directory entries</li>
<li>Implement seek for files opened for read (useful for video players)
<ul>
<li>with <code>-no-seek</code> flag to disable</li>
</ul></li>
<li>Fix crash on 32 bit ARM (alignment of 64 bit counter)</li>
<li>…and many more internal fixes and improvements!</li>
</ul></li>
<li>Crypt
<ul>
<li>Dont show encrypted password in configurator to stop confusion</li>
</ul></li>
<li>Amazon Drive
<ul>
<li>New wait for upload option <code>--acd-upload-wait-per-gb</code>
<ul>
<li>upload timeouts scale by file size and can be disabled</li>
</ul></li>
<li>Add 502 Bad Gateway to list of errors we retry</li>
<li>Fix overwriting a file with a zero length file</li>
<li>Fix ACD file size warning limit - thanks Felix Bünemann</li>
</ul></li>
<li>Local
<ul>
<li>Unix: implement <code>-x</code>/<code>--one-file-system</code> to stay on a single file system
<ul>
<li>thanks Durval Menezes and Luiz Carlos Rumbelsperger Viana</li>
</ul></li>
<li>Windows: ignore the symlink bit on files</li>
<li>Windows: Ignore directory based junction points</li>
</ul></li>
<li>B2
<ul>
<li>Make sure each upload has at least one upload slot - fixes strange upload stats</li>
<li>Fix uploads when using crypt</li>
<li>Fix download of large files (sha1 mismatch)</li>
<li>Return error when we try to create a bucket which someone else owns</li>
<li>Update B2 docs with Data usage, and Crypt section - thanks Tomasz Mazur</li>
</ul></li>
<li>S3
<ul>
<li>Command line and config file support for
<ul>
<li>Setting/overriding ACL - thanks Radek Senfeld</li>
<li>Setting storage class - thanks Asko Tamm</li>
</ul></li>
</ul></li>
<li>Drive
<ul>
<li>Make exponential backoff work exactly as per Google specification</li>
<li>add <code>.epub</code>, <code>.odp</code> and <code>.tsv</code> as export formats.</li>
</ul></li>
<li>Swift
<ul>
<li>Dont read metadata for directory marker objects</li>
</ul></li>
</ul>
<h2 id="v1.33---2016-08-24">v1.33 - 2016-08-24</h2>
<ul>
<li>New Features
<ul>
<li>Implement encryption
<ul>
<li>data encrypted in NACL secretbox format</li>
<li>with optional file name encryption</li>
</ul></li>
<li>New commands
<ul>
<li>rclone mount - implements FUSE mounting of remotes (EXPERIMENTAL)
<ul>
<li>works on Linux, FreeBSD and OS X (need testers for the last 2!)</li>
</ul></li>
<li>rclone cat - outputs remote file or files to the terminal</li>
<li>rclone genautocomplete - command to make a bash completion script for rclone</li>
</ul></li>
<li>Editing a remote using <code>rclone config</code> now goes through the wizard</li>
<li>Compile with go 1.7 - this fixes rclone on macOS Sierra and on 386 processors</li>
<li>Use cobra for sub commands and docs generation</li>
</ul></li>
<li>drive
<ul>
<li>Document how to make your own client_id</li>
</ul></li>
<li>s3
<ul>
<li>User-configurable Amazon S3 ACL (thanks Radek Šenfeld)</li>
</ul></li>
<li>b2
<ul>
<li>Fix stats accounting for upload - no more jumping to 100% done</li>
<li>On cleanup delete hide marker if it is the current file</li>
<li>New B2 API endpoint (thanks Per Cederberg)</li>
<li>Set maximum backoff to 5 Minutes</li>
</ul></li>
<li>onedrive
<ul>
<li>Fix URL escaping in file names - eg uploading files with <code>+</code> in them.</li>
</ul></li>
<li>amazon cloud drive
<ul>
<li>Fix token expiry during large uploads</li>
<li>Work around 408 REQUEST_TIMEOUT and 504 GATEWAY_TIMEOUT errors</li>
</ul></li>
<li>local
<ul>
<li>Fix filenames with invalid UTF-8 not being uploaded</li>
<li>Fix problem with some UTF-8 characters on OS X</li>
</ul></li>
</ul>
<h2 id="v1.32---2016-07-13">v1.32 - 2016-07-13</h2>
<ul>
<li>Backblaze B2
<ul>
<li>Fix upload of files large files not in root</li>
</ul></li>
</ul>
<h2 id="v1.31---2016-07-13">v1.31 - 2016-07-13</h2>
<ul>
<li>New Features
<ul>
<li>Reduce memory on sync by about 50%</li>
<li>Implement no-traverse flag to stop copy traversing the destination remote.
<ul>
<li>This can be used to reduce memory usage down to the smallest possible.</li>
<li>Useful to copy a small number of files into a large destination folder.</li>
</ul></li>
<li>Implement cleanup command for emptying trash / removing old versions of files
<ul>
<li>Currently B2 only</li>
</ul></li>
<li>Single file handling improved
<ul>
<li>Now copied with files-from</li>
<li>Automatically sets no-traverse when copying a single file</li>
</ul></li>
<li>Info on using installing with ansible - thanks Stefan Weichinger</li>
<li>Implement no-update-modtime flag to stop rclone fixing the remote modified times.</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Fix move command - stop it running for overlapping Fses - this was causing data loss.</li>
</ul></li>
<li>Local
<ul>
<li>Fix incomplete hashes - this was causing problems for B2.</li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Rename Amazon Cloud Drive to Amazon Drive - no changes to config file needed.</li>
</ul></li>
<li>Swift
<ul>
<li>Add support for non-default project domain - thanks Antonio Messina.</li>
</ul></li>
<li>S3
<ul>
<li>Add instructions on how to use rclone with minio.</li>
<li>Add ap-northeast-2 (Seoul) and ap-south-1 (Mumbai) regions.</li>
<li>Skip setting the modified time for objects &gt; 5GB as it isnt possible.</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>Add b2-versions flag so old versions can be listed and retreived.</li>
<li>Treat 403 errors (eg cap exceeded) as fatal.</li>
<li>Implement cleanup command for deleting old file versions.</li>
<li>Make error handling compliant with B2 integrations notes.</li>
<li>Fix handling of token expiry.</li>
<li>Implement b2-test-mode to set <code>X-Bz-Test-Mode</code> header.</li>
<li>Set cutoff for chunked upload to 200MB as per B2 guidelines.</li>
<li>Make upload multi-threaded.</li>
</ul></li>
<li>Dropbox
<ul>
<li>Dont retry 461 errors.</li>
</ul></li>
</ul>
<h2 id="v1.30---2016-06-18">v1.30 - 2016-06-18</h2>
<ul>
<li>New Features
<ul>
<li>Directory listing code reworked for more features and better error reporting (thanks to Klaus Post for help). This enables
<ul>
<li>Directory include filtering for efficiency</li>
<li>max-depth parameter</li>
<li>Better error reporting</li>
<li>More to come</li>
</ul></li>
<li>Retry more errors</li>
<li>Add ignore-size flag - for uploading images to onedrive</li>
<li>Log -v output to stdout by default</li>
<li>Display the transfer stats in more human readable form</li>
<li>Make 0 size files specifiable with <code>--max-size 0b</code></li>
<li>Add <code>b</code> suffix so we can specify bytes in bwlimit, min-size etc</li>
<li>Use “password:” instead of “password&gt;” prompt - thanks Klaus Post and Leigh Klotz</li>
</ul></li>
<li>Bug Fixes
<ul>
<li>Fix retry doing one too many retries</li>
</ul></li>
<li>Local
<ul>
<li>Fix problems with OS X and UTF-8 characters</li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Check a file exists before uploading to help with 408 Conflict errors</li>
<li>Reauth on 401 errors - this has been causing a lot of problems</li>
<li>Work around spurious 403 errors</li>
<li>Restart directory listings on error</li>
</ul></li>
<li>Google Drive
<ul>
<li>Check a file exists before uploading to help with duplicates</li>
<li>Fix retry of multipart uploads</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>Implement large file uploading</li>
</ul></li>
<li>S3
<ul>
<li>Add AES256 server-side encryption for - thanks Justin R. Wilson</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Make sure we dont use conflicting content types on upload</li>
<li>Add service account support - thanks Michal Witkowski</li>
</ul></li>
<li>Swift
<ul>
<li>Add auth version parameter</li>
<li>Add domain option for openstack (v3 auth) - thanks Fabian Ruff</li>
</ul></li>
</ul>
<h2 id="v1.29---2016-04-18">v1.29 - 2016-04-18</h2>
<ul>
<li>New Features
<ul>
<li>Implement <code>-I, --ignore-times</code> for unconditional upload</li>
<li>Improve <code>dedupe</code>command
<ul>
<li>Now removes identical copies without asking</li>
<li>Now obeys <code>--dry-run</code></li>
<li>Implement <code>--dedupe-mode</code> for non interactive running
<ul>
<li><code>--dedupe-mode interactive</code> - interactive the default.</li>
<li><code>--dedupe-mode skip</code> - removes identical files then skips anything left.</li>
<li><code>--dedupe-mode first</code> - removes identical files then keeps the first one.</li>
<li><code>--dedupe-mode newest</code> - removes identical files then keeps the newest one.</li>
<li><code>--dedupe-mode oldest</code> - removes identical files then keeps the oldest one.</li>
<li><code>--dedupe-mode rename</code> - removes identical files then renames the rest to be different.</li>
</ul></li>
</ul></li>
</ul></li>
<li>Bug fixes
<ul>
<li>Make rclone check obey the <code>--size-only</code> flag.</li>
<li>Use “application/octet-stream” if discovered mime type is invalid.</li>
<li>Fix missing “quit” option when there are no remotes.</li>
</ul></li>
<li>Google Drive
<ul>
<li>Increase default chunk size to 8 MB - increases upload speed of big files</li>
<li>Speed up directory listings and make more reliable</li>
<li>Add missing retries for Move and DirMove - increases reliability</li>
<li>Preserve mime type on file update</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>Enable mod time syncing
<ul>
<li>This means that B2 will now check modification times</li>
<li>It will upload new files to update the modification times</li>
<li>(there isnt an API to just set the mod time.)</li>
<li>If you want the old behaviour use <code>--size-only</code>.</li>
</ul></li>
<li>Update API to new version</li>
<li>Fix parsing of mod time when not in metadata</li>
</ul></li>
<li>Swift/Hubic
<ul>
<li>Dont return an MD5SUM for static large objects</li>
</ul></li>
<li>S3
<ul>
<li>Fix uploading files bigger than 50GB</li>
</ul></li>
</ul>
<h2 id="v1.28---2016-03-01">v1.28 - 2016-03-01</h2>
<ul>
<li>New Features
<ul>
<li>Configuration file encryption - thanks Klaus Post</li>
<li>Improve <code>rclone config</code> adding more help and making it easier to understand</li>
<li>Implement <code>-u</code>/<code>--update</code> so creation times can be used on all remotes</li>
<li>Implement <code>--low-level-retries</code> flag</li>
<li>Optionally disable gzip compression on downloads with <code>--no-gzip-encoding</code></li>
</ul></li>
<li>Bug fixes
<ul>
<li>Dont make directories if <code>--dry-run</code> set</li>
<li>Fix and document the <code>move</code> command</li>
<li>Fix redirecting stderr on unix-like OSes when using <code>--log-file</code></li>
<li>Fix <code>delete</code> command to wait until all finished - fixes missing deletes.</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>Use one upload URL per go routine fixes <code>more than one upload using auth token</code></li>
<li>Add pacing, retries and reauthentication - fixes token expiry problems</li>
<li>Upload without using a temporary file from local (and remotes which support SHA1)</li>
<li>Fix reading metadata for all files when it shouldnt have been</li>
</ul></li>
<li>Drive
<ul>
<li>Fix listing drive documents at root</li>
<li>Disable copy and move for Google docs</li>
</ul></li>
<li>Swift
<ul>
<li>Fix uploading of chunked files with non ASCII characters</li>
<li>Allow setting of <code>storage_url</code> in the config - thanks Xavier Lucas</li>
</ul></li>
<li>S3
<ul>
<li>Allow IAM role and credentials from environment variables - thanks Brian Stengaard</li>
<li>Allow low privilege users to use S3 (check if directory exists during Mkdir) - thanks Jakub Gedeon</li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Retry on more things to make directory listings more reliable</li>
</ul></li>
</ul>
<h2 id="v1.27---2016-01-31">v1.27 - 2016-01-31</h2>
<ul>
<li>New Features
<ul>
<li>Easier headless configuration with <code>rclone authorize</code></li>
<li>Add support for multiple hash types - we now check SHA1 as well as MD5 hashes.</li>
<li><code>delete</code> command which does obey the filters (unlike <code>purge</code>)</li>
<li><code>dedupe</code> command to deduplicate a remote. Useful with Google Drive.</li>
<li>Add <code>--ignore-existing</code> flag to skip all files that exist on destination.</li>
<li>Add <code>--delete-before</code>, <code>--delete-during</code>, <code>--delete-after</code> flags.</li>
<li>Add <code>--memprofile</code> flag to debug memory use.</li>
<li>Warn the user about files with same name but different case</li>
<li>Make <code>--include</code> rules add their implict exclude * at the end of the filter list</li>
<li>Deprecate compiling with go1.3</li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Fix download of files &gt; 10 GB</li>
<li>Fix directory traversal (“Next token is expired”) for large directory listings</li>
<li>Remove 409 conflict from error codes we will retry - stops very long pauses</li>
</ul></li>
<li>Backblaze B2
<ul>
<li>SHA1 hashes now checked by rclone core</li>
</ul></li>
<li>Drive
<ul>
<li>Add <code>--drive-auth-owner-only</code> to only consider files owned by the user - thanks Björn Harrtell</li>
<li>Export Google documents</li>
</ul></li>
<li>Dropbox
<ul>
<li>Make file exclusion error controllable with -q</li>
</ul></li>
<li>Swift
<ul>
<li>Fix upload from unprivileged user.</li>
</ul></li>
<li>S3
<ul>
<li>Fix updating of mod times of files with <code>+</code> in.</li>
</ul></li>
<li>Local
<ul>
<li>Add local file system option to disable UNC on Windows.</li>
</ul></li>
</ul>
<h2 id="v1.26---2016-01-02">v1.26 - 2016-01-02</h2>
<ul>
<li>New Features
<ul>
<li>Yandex storage backend - thank you Dmitry Burdeev (“dibu”)</li>
<li>Implement Backblaze B2 storage backend</li>
<li>Add min-age and max-age flags - thank you Adriano Aurélio Meirelles</li>
<li>Make ls/lsl/md5sum/size/check obey includes and excludes</li>
</ul></li>
<li>Fixes
<ul>
<li>Fix crash in http logging</li>
<li>Upload releases to github too</li>
</ul></li>
<li>Swift
<ul>
<li>Fix sync for chunked files</li>
</ul></li>
<li>OneDrive
<ul>
<li>Re-enable server side copy</li>
<li>Dont mask HTTP error codes with JSON decode error</li>
</ul></li>
<li>S3
<ul>
<li>Fix corrupting Content-Type on mod time update (thanks Joseph Spurrier)</li>
</ul></li>
</ul>
<h2 id="v1.25---2015-11-14">v1.25 - 2015-11-14</h2>
<ul>
<li>New features
<ul>
<li>Implement Hubic storage system</li>
</ul></li>
<li>Fixes
<ul>
<li>Fix deletion of some excluded files without delete-excluded
<ul>
<li>This could have deleted files unexpectedly on sync</li>
<li>Always check first with <code>--dry-run</code>!</li>
</ul></li>
</ul></li>
<li>Swift
<ul>
<li>Stop SetModTime losing metadata (eg X-Object-Manifest)
<ul>
<li>This could have caused data loss for files &gt; 5GB in size</li>
</ul></li>
<li>Use ContentType from Object to avoid lookups in listings</li>
</ul></li>
<li>OneDrive
<ul>
<li>disable server side copy as it seems to be broken at Microsoft</li>
</ul></li>
</ul>
<h2 id="v1.24---2015-11-07">v1.24 - 2015-11-07</h2>
<ul>
<li>New features
<ul>
<li>Add support for Microsoft OneDrive</li>
<li>Add <code>--no-check-certificate</code> option to disable server certificate verification</li>
<li>Add async readahead buffer for faster transfer of big files</li>
</ul></li>
<li>Fixes
<ul>
<li>Allow spaces in remotes and check remote names for validity at creation time</li>
<li>Allow &amp; and disallow : in Windows filenames.</li>
</ul></li>
<li>Swift
<ul>
<li>Ignore directory marker objects where appropriate - allows working with Hubic</li>
<li>Dont delete the container if fs wasnt at root</li>
</ul></li>
<li>S3
<ul>
<li>Dont delete the bucket if fs wasnt at root</li>
</ul></li>
<li>Google Cloud Storage
<ul>
<li>Dont delete the bucket if fs wasnt at root</li>
</ul></li>
</ul>
<h2 id="v1.23---2015-10-03">v1.23 - 2015-10-03</h2>
<ul>
<li>New features
<ul>
<li>Implement <code>rclone size</code> for measuring remotes</li>
</ul></li>
<li>Fixes
<ul>
<li>Fix headless config for drive and gcs</li>
<li>Tell the user they should try again if the webserver method failed</li>
<li>Improve output of <code>--dump-headers</code></li>
</ul></li>
<li>S3
<ul>
<li>Allow anonymous access to public buckets</li>
</ul></li>
<li>Swift
<ul>
<li>Stop chunked operations logging “Failed to read info: Object Not Found”</li>
<li>Use Content-Length on uploads for extra reliability</li>
</ul></li>
</ul>
<h2 id="v1.22---2015-09-28">v1.22 - 2015-09-28</h2>
<ul>
<li>Implement rsync like include and exclude flags</li>
<li>swift
<ul>
<li>Support files &gt; 5GB - thanks Sergey Tolmachev</li>
</ul></li>
</ul>
<h2 id="v1.21---2015-09-22">v1.21 - 2015-09-22</h2>
<ul>
<li>New features
<ul>
<li>Display individual transfer progress</li>
<li>Make lsl output times in localtime</li>
</ul></li>
<li>Fixes
<ul>
<li>Fix allowing user to override credentials again in Drive, GCS and ACD</li>
</ul></li>
<li>Amazon Drive
<ul>
<li>Implement compliant pacing scheme</li>
</ul></li>
<li>Google Drive
<ul>
<li>Make directory reads concurrent for increased speed.</li>
</ul></li>
</ul>
<h2 id="v1.20---2015-09-15">v1.20 - 2015-09-15</h2>
<ul>
<li>New features
<ul>
<li>Amazon Drive support</li>
<li>Oauth support redone - fix many bugs and improve usability
<ul>
<li>Use “golang.org/x/oauth2” as oauth libary of choice</li>
<li>Improve oauth usability for smoother initial signup</li>
<li>drive, googlecloudstorage: optionally use auto config for the oauth token</li>
</ul></li>
<li>Implement dump-headers and dump-bodies debug flags</li>
<li>Show multiple matched commands if abbreviation too short</li>
<li>Implement server side move where possible</li>
</ul></li>
<li>local
<ul>
<li>Always use UNC paths internally on Windows - fixes a lot of bugs</li>
</ul></li>
<li>dropbox
<ul>
<li>force use of our custom transport which makes timeouts work</li>
</ul></li>
<li>Thanks to Klaus Post for lots of help with this release</li>
</ul>
<h2 id="v1.19---2015-08-28">v1.19 - 2015-08-28</h2>
<ul>
<li>New features
<ul>
<li>Server side copies for s3/swift/drive/dropbox/gcs</li>
<li>Move command - uses server side copies if it can</li>
<li>Implement retries flag - tries 3 times by default</li>
<li>Build for plan9/amd64 and solaris/amd64 too</li>
</ul></li>
<li>Fixes
<ul>
<li>Make a current version download with a fixed URL for scripting</li>
<li>Ignore rmdir in limited fs rather than throwing error</li>
</ul></li>
<li>dropbox
<ul>
<li>Increase chunk size to improve upload speeds massively</li>
<li>Issue an error message when trying to upload bad file name</li>
</ul></li>
</ul>
<h2 id="v1.18---2015-08-17">v1.18 - 2015-08-17</h2>
<ul>
<li>drive
<ul>
<li>Add <code>--drive-use-trash</code> flag so rclone trashes instead of deletes</li>
<li>Add “Forbidden to download” message for files with no downloadURL</li>
</ul></li>
<li>dropbox
<ul>
<li>Remove datastore
<ul>
<li>This was deprecated and it caused a lot of problems</li>
<li>Modification times and MD5SUMs no longer stored</li>
</ul></li>
<li>Fix uploading files &gt; 2GB</li>
</ul></li>
<li>s3
<ul>
<li>use official AWS SDK from github.com/aws/aws-sdk-go</li>
<li><strong>NB</strong> will most likely require you to delete and recreate remote</li>
<li>enable multipart upload which enables files &gt; 5GB</li>
<li>tested with Ceph / RadosGW / S3 emulation</li>
<li>many thanks to Sam Liston and Brian Haymore at the <a href="https://www.chpc.utah.edu/">Utah Center for High Performance Computing</a> for a Ceph test account</li>
</ul></li>
<li>misc
<ul>
<li>Show errors when reading the config file</li>
<li>Do not print stats in quiet mode - thanks Leonid Shalupov</li>
<li>Add FAQ</li>
<li>Fix created directories not obeying umask</li>
<li>Linux installation instructions - thanks Shimon Doodkin</li>
</ul></li>
</ul>
<h2 id="v1.17---2015-06-14">v1.17 - 2015-06-14</h2>
<ul>
<li>dropbox: fix case insensitivity issues - thanks Leonid Shalupov</li>
</ul>
<h2 id="v1.16---2015-06-09">v1.16 - 2015-06-09</h2>
<ul>
<li>Fix uploading big files which was causing timeouts or panics</li>
<li>Dont check md5sum after download with size-only</li>
</ul>
<h2 id="v1.15---2015-06-06">v1.15 - 2015-06-06</h2>
<ul>
<li>Add checksum flag to only discard transfers by MD5SUM - thanks Alex Couper</li>
<li>Implement size-only flag to sync on size not checksum &amp; modtime</li>
<li>Expand docs and remove duplicated information</li>
<li>Document rclones limitations with directories</li>
<li>dropbox: update docs about case insensitivity</li>
</ul>
<h2 id="v1.14---2015-05-21">v1.14 - 2015-05-21</h2>
<ul>
<li>local: fix encoding of non utf-8 file names - fixes a duplicate file problem</li>
<li>drive: docs about rate limiting</li>
<li>google cloud storage: Fix compile after API change in “google.golang.org/api/storage/v1”</li>
</ul>
<h2 id="v1.13---2015-05-10">v1.13 - 2015-05-10</h2>
<ul>
<li>Revise documentation (especially sync)</li>
<li>Implement timeout and conntimeout</li>
<li>s3: ignore etags from multipart uploads which arent md5sums</li>
</ul>
<h2 id="v1.12---2015-03-15">v1.12 - 2015-03-15</h2>
<ul>
<li>drive: Use chunked upload for files above a certain size</li>
<li>drive: add drive-chunk-size and drive-upload-cutoff parameters</li>
<li>drive: switch to insert from update when a failed copy deletes the upload</li>
<li>core: Log duplicate files if they are detected</li>
</ul>
<h2 id="v1.11---2015-03-04">v1.11 - 2015-03-04</h2>
<ul>
<li>swift: add region parameter</li>
<li>drive: fix crash on failed to update remote mtime</li>
<li>In remote paths, change native directory separators to /</li>
<li>Add synchronization to ls/lsl/lsd output to stop corruptions</li>
<li>Ensure all stats/log messages to go stderr</li>
<li>Add log-file flag to log everything (including panics) to file</li>
<li>Make it possible to disable stats printing with stats=0</li>
<li>Implement bwlimit to limit data transfer bandwidth</li>
</ul>
<h2 id="v1.10---2015-02-12">v1.10 - 2015-02-12</h2>
<ul>
<li>s3: list an unlimited number of items</li>
<li>Fix getting stuck in the configurator</li>
</ul>
<h2 id="v1.09---2015-02-07">v1.09 - 2015-02-07</h2>
<ul>
<li>windows: Stop drive letters (eg C:) getting mixed up with remotes (eg drive:)</li>
<li>local: Fix directory separators on Windows</li>
<li>drive: fix rate limit exceeded errors</li>
</ul>
<h2 id="v1.08---2015-02-04">v1.08 - 2015-02-04</h2>
<ul>
<li>drive: fix subdirectory listing to not list entire drive</li>
<li>drive: Fix SetModTime</li>
<li>dropbox: adapt code to recent library changes</li>
</ul>
<h2 id="v1.07---2014-12-23">v1.07 - 2014-12-23</h2>
<ul>
<li>google cloud storage: fix memory leak</li>
</ul>
<h2 id="v1.06---2014-12-12">v1.06 - 2014-12-12</h2>
<ul>
<li>Fix “Couldnt find home directory” on OSX</li>
<li>swift: Add tenant parameter</li>
<li>Use new location of Google API packages</li>
</ul>
<h2 id="v1.05---2014-08-09">v1.05 - 2014-08-09</h2>
<ul>
<li>Improved tests and consequently lots of minor fixes</li>
<li>core: Fix race detected by go race detector</li>
<li>core: Fixes after running errcheck</li>
<li>drive: reset root directory on Rmdir and Purge</li>
<li>fs: Document that Purger returns error on empty directory, test and fix</li>
<li>google cloud storage: fix ListDir on subdirectory</li>
<li>google cloud storage: re-read metadata in SetModTime</li>
<li>s3: make reading metadata more reliable to work around eventual consistency problems</li>
<li>s3: strip trailing / from ListDir()</li>
<li>swift: return directories without / in ListDir</li>
</ul>
<h2 id="v1.04---2014-07-21">v1.04 - 2014-07-21</h2>
<ul>
<li>google cloud storage: Fix crash on Update</li>
</ul>
<h2 id="v1.03---2014-07-20">v1.03 - 2014-07-20</h2>
<ul>
<li>swift, s3, dropbox: fix updated files being marked as corrupted</li>
<li>Make compile with go 1.1 again</li>
</ul>
<h2 id="v1.02---2014-07-19">v1.02 - 2014-07-19</h2>
<ul>
<li>Implement Dropbox remote</li>
<li>Implement Google Cloud Storage remote</li>
<li>Verify Md5sums and Sizes after copies</li>
<li>Remove times from “ls” command - lists sizes only</li>
<li>Add add “lsl” - lists times and sizes</li>
<li>Add “md5sum” command</li>
</ul>
<h2 id="v1.01---2014-07-04">v1.01 - 2014-07-04</h2>
<ul>
<li>drive: fix transfer of big files using up lots of memory</li>
</ul>
<h2 id="v1.00---2014-07-03">v1.00 - 2014-07-03</h2>
<ul>
<li>drive: fix whole second dates</li>
</ul>
<h2 id="v0.99---2014-06-26">v0.99 - 2014-06-26</h2>
<ul>
<li>Fix dry-run not working</li>
<li>Make compatible with go 1.1</li>
</ul>
<h2 id="v0.98---2014-05-30">v0.98 - 2014-05-30</h2>
<ul>
<li>s3: Treat missing Content-Length as 0 for some ceph installations</li>
<li>rclonetest: add file with a space in</li>
</ul>
<h2 id="v0.97---2014-05-05">v0.97 - 2014-05-05</h2>
<ul>
<li>Implement copying of single files</li>
<li>s3 &amp; swift: support paths inside containers/buckets</li>
</ul>
<h2 id="v0.96---2014-04-24">v0.96 - 2014-04-24</h2>
<ul>
<li>drive: Fix multiple files of same name being created</li>
<li>drive: Use o.Update and fs.Put to optimise transfers</li>
<li>Add version number, -V and version</li>
</ul>
<h2 id="v0.95---2014-03-28">v0.95 - 2014-03-28</h2>
<ul>
<li>rclone.org: website, docs and graphics</li>
<li>drive: fix path parsing</li>
</ul>
<h2 id="v0.94---2014-03-27">v0.94 - 2014-03-27</h2>
<ul>
<li>Change remote format one last time</li>
<li>GNU style flags</li>
</ul>
<h2 id="v0.93---2014-03-16">v0.93 - 2014-03-16</h2>
<ul>
<li>drive: store token in config file</li>
<li>cross compile other versions</li>
<li>set strict permissions on config file</li>
</ul>
<h2 id="v0.92---2014-03-15">v0.92 - 2014-03-15</h2>
<ul>
<li>Config fixes and config option</li>
</ul>
<h2 id="v0.91---2014-03-15">v0.91 - 2014-03-15</h2>
<ul>
<li>Make config file</li>
</ul>
<h2 id="v0.90---2013-06-27">v0.90 - 2013-06-27</h2>
<ul>
<li>Project named rclone</li>
</ul>
<h2 id="v0.00---2012-11-18">v0.00 - 2012-11-18</h2>
<ul>
<li>Project started</li>
</ul>
<h2 id="bugs-and-limitations">Bugs and Limitations</h2>
<h3 id="empty-directories-are-left-behind-not-created">Empty directories are left behind / not created</h3>
<p>With remotes that have a concept of directory, eg Local and Drive, empty directories may be left behind, or not created when one was expected.</p>
<p>This is because rclone doesnt have a concept of a directory - it only works on objects. Most of the object storage systems cant actually store a directory so there is nowhere for rclone to store anything about directories.</p>
<p>You can work round this to some extent with the<code>purge</code> command which will delete everything under the path, <strong>inluding</strong> empty directories.</p>
<p>This may be fixed at some point in <a href="https://github.com/rclone/rclone/issues/100">Issue #100</a></p>
<h3 id="directory-timestamps-arent-preserved">Directory timestamps arent preserved</h3>
<p>For the same reason as the above, rclone doesnt have a concept of a directory - it only works on objects, therefore it cant preserve the timestamps of directories.</p>
<h2 id="frequently-asked-questions">Frequently Asked Questions</h2>
<h3 id="do-all-cloud-storage-systems-support-all-rclone-commands">Do all cloud storage systems support all rclone commands</h3>
<p>Yes they do. All the rclone commands (eg <code>sync</code>, <code>copy</code> etc) will work on all the remote storage systems.</p>
<h3 id="can-i-copy-the-config-from-one-machine-to-another">Can I copy the config from one machine to another</h3>
<p>Sure! Rclone stores all of its config in a single file. If you want to find this file, run <code>rclone config file</code> which will tell you where it is.</p>
<p>See the <a href="https://rclone.org/remote_setup/">remote setup docs</a> for more info.</p>
<h3 id="how-do-i-configure-rclone-on-a-remote-headless-box-with-no-browser">How do I configure rclone on a remote / headless box with no browser?</h3>
<p>This has now been documented in its own <a href="https://rclone.org/remote_setup/">remote setup page</a>.</p>
<h3 id="can-rclone-sync-directly-from-drive-to-s3">Can rclone sync directly from drive to s3</h3>
<p>Rclone can sync between two remote cloud storage systems just fine.</p>
<p>Note that it effectively downloads the file and uploads it again, so the node running rclone would need to have lots of bandwidth.</p>
<p>The syncs would be incremental (on a file by file basis).</p>
<p>Eg</p>
<pre><code>rclone sync drive:Folder s3:bucket</code></pre>
<h3 id="using-rclone-from-multiple-locations-at-the-same-time">Using rclone from multiple locations at the same time</h3>
<p>You can use rclone from multiple places at the same time if you choose different subdirectory for the output, eg</p>
<pre><code>Server A&gt; rclone sync /tmp/whatever remote:ServerA
Server B&gt; rclone sync /tmp/whatever remote:ServerB</code></pre>
<p>If you sync to the same directory then you should use rclone copy otherwise the two rclones may delete each others files, eg</p>
<pre><code>Server A&gt; rclone copy /tmp/whatever remote:Backup
Server B&gt; rclone copy /tmp/whatever remote:Backup</code></pre>
<p>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.</p>
<h3 id="why-doesnt-rclone-support-partial-transfers-binary-diffs-like-rsync">Why doesnt rclone support partial transfers / binary diffs like rsync?</h3>
<p>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.</p>
<p>Cloud storage systems (at least none Ive come across yet) dont support partially uploading an object. You cant take an existing object, and change some bytes in the middle of it.</p>
<p>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.</p>
<p>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.</p>
<h3 id="can-rclone-do-bi-directional-sync">Can rclone do bi-directional sync?</h3>
<p>No, not at present. rclone only does uni-directional sync from A -&gt; B. It may do in the future though since it has all the primitives - it just requires writing the algorithm to do it.</p>
<h3 id="can-i-use-rclone-with-an-http-proxy">Can I use rclone with an HTTP proxy?</h3>
<p>Yes. rclone will follow the standard environment variables for proxies, similar to cURL and other programs.</p>
<p>In general the variables are called <code>http_proxy</code> (for services reached over <code>http</code>) and <code>https_proxy</code> (for services reached over <code>https</code>). Most public services will be using <code>https</code>, but you may wish to set both.</p>
<p>The content of the variable is <code>protocol://server:port</code>. The protocol value is the one used to talk to the proxy server, itself, and is commonly either <code>http</code> or <code>socks5</code>.</p>
<p>Slightly annoyingly, there is no <em>standard</em> for the name; some applications may use <code>http_proxy</code> but another one <code>HTTP_PROXY</code>. The <code>Go</code> libraries used by <code>rclone</code> will try both variations, but you may wish to set all possibilities. So, on Linux, you may end up with code similar to</p>
<pre><code>export http_proxy=http://proxyserver:12345
export https_proxy=$http_proxy
export HTTP_PROXY=$http_proxy
export HTTPS_PROXY=$http_proxy</code></pre>
<p>The <code>NO_PROXY</code> 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”.</p>
<p>e.g.</p>
<pre><code>export no_proxy=localhost,127.0.0.0/8,my.host.name
export NO_PROXY=$no_proxy</code></pre>
<p>Note that the ftp backend does not support <code>ftp_proxy</code> yet.</p>
<h3 id="rclone-gives-x509-failed-to-load-system-roots-and-no-roots-provided-error">Rclone gives x509: failed to load system roots and no roots provided error</h3>
<p>This means that <code>rclone</code> cant file the SSL root certificates. Likely you are running <code>rclone</code> on a NAS with a cut-down Linux OS, or possibly on Solaris.</p>
<p>Rclone (via the Go runtime) tries to load the root certificates from these places on Linux.</p>
<pre><code>&quot;/etc/ssl/certs/ca-certificates.crt&quot;, // Debian/Ubuntu/Gentoo etc.
&quot;/etc/pki/tls/certs/ca-bundle.crt&quot;, // Fedora/RHEL
&quot;/etc/ssl/ca-bundle.pem&quot;, // OpenSUSE
&quot;/etc/pki/tls/cacert.pem&quot;, // OpenELEC</code></pre>
<p>So doing something like this should fix the problem. It also sets the time which is important for SSL to work properly.</p>
<pre><code>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</code></pre>
<p>The two environment variables <code>SSL_CERT_FILE</code> and <code>SSL_CERT_DIR</code>, mentioned in the <a href="https://godoc.org/crypto/x509">x509 pacakge</a>, provide an additional way to provide the SSL root certificates.</p>
<p>Note that you may need to add the <code>--insecure</code> option to the <code>curl</code> command line if it doesnt work without.</p>
<pre><code>curl --insecure -o /etc/ssl/certs/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt</code></pre>
<h3 id="rclone-gives-failed-to-load-config-file-function-not-implemented-error">Rclone gives Failed to load config file: function not implemented error</h3>
<p>Likely this means that you are running rclone on Linux version not supported by the go runtime, ie earlier than version 2.6.23.</p>
<p>See the <a href="https://golang.org/doc/install">system requirements section in the go install docs</a> for full details.</p>
<h3 id="all-my-uploaded-docxxlsxpptx-files-appear-as-archivezip">All my uploaded docx/xlsx/pptx files appear as archive/zip</h3>
<p>This is caused by uploading these files from a Windows computer which hasnt got the Microsoft Office suite installed. The easiest way to fix is to install the Word viewer and the Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint 2007 and later versions file formats</p>
<h3 id="tcp-lookup-some.domain.com-no-such-host">tcp lookup some.domain.com no such host</h3>
<p>This happens when rclone cannot resolve a domain. Please check that your DNS setup is generally working, e.g.</p>
<pre><code># both should print a long list of possible IP addresses
dig www.googleapis.com # resolve using your default DNS
dig www.googleapis.com @8.8.8.8 # resolve with Google&#39;s DNS server</code></pre>
<p>If you are using <code>systemd-resolved</code> (default on Arch Linux), ensure it is at version 233 or higher. Previous releases contain a bug which causes not all domains to be resolved properly.</p>
<p>Additionally with the <code>GODEBUG=netdns=</code> environment variable the Go resolver decision can be influenced. This also allows to resolve certain issues with DNS resolution. See the <a href="https://golang.org/pkg/net/#hdr-Name_Resolution">name resolution section in the go docs</a>.</p>
<h3 id="the-total-size-reported-in-the-stats-for-a-sync-is-wrong-and-keeps-changing">The total size reported in the stats for a sync is wrong and keeps changing</h3>
<p>It is likely you have more than 10,000 files that need to be synced. By default rclone only gets 10,000 files ahead in a sync so as not to use up too much memory. You can change this default with the <a href="/docs/#max-backlog-n">max-backlog</a> flag.</p>
<h3 id="rclone-is-using-too-much-memory-or-appears-to-have-a-memory-leak">Rclone is using too much memory or appears to have a memory leak</h3>
<p>Rclone is written in Go which uses a garbage collector. The default settings for the garbage collector mean that it runs when the heap size has doubled.</p>
<p>However it is possible to tune the garbage collector to use less memory by <a href="https://dave.cheney.net/tag/gogc">setting GOGC</a> to a lower value, say <code>export GOGC=20</code>. This will make the garbage collector work harder, reducing memory size at the expense of CPU usage.</p>
<p>The most common cause of rclone using lots of memory is a single directory with thousands or millions of files in. Rclone has to load this entirely into memory as rclone objects. Each Rclone object takes 0.5k-1k of memory.</p>
<h2 id="license">License</h2>
<p>This is free software under the terms of MIT the license (check the COPYING file included with the source code).</p>
<pre><code>Copyright (C) 2012 by Nick Craig-Wood https://www.craig-wood.com/nick/
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the &quot;Software&quot;), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.</code></pre>
<h2 id="authors">Authors</h2>
<ul>
<li>Nick Craig-Wood <a href="mailto:nick@craig-wood.com">nick@craig-wood.com</a></li>
</ul>
<h2 id="contributors">Contributors</h2>
<ul>
<li>Alex Couper <a href="mailto:amcouper@gmail.com">amcouper@gmail.com</a></li>
<li>Leonid Shalupov <a href="mailto:leonid@shalupov.com">leonid@shalupov.com</a> <a href="mailto:shalupov@diverse.org.ru">shalupov@diverse.org.ru</a></li>
<li>Shimon Doodkin <a href="mailto:helpmepro1@gmail.com">helpmepro1@gmail.com</a></li>
<li>Colin Nicholson <a href="mailto:colin@colinn.com">colin@colinn.com</a></li>
<li>Klaus Post <a href="mailto:klauspost@gmail.com">klauspost@gmail.com</a></li>
<li>Sergey Tolmachev <a href="mailto:tolsi.ru@gmail.com">tolsi.ru@gmail.com</a></li>
<li>Adriano Aurélio Meirelles <a href="mailto:adriano@atinge.com">adriano@atinge.com</a></li>
<li>C. Bess <a href="mailto:cbess@users.noreply.github.com">cbess@users.noreply.github.com</a></li>
<li>Dmitry Burdeev <a href="mailto:dibu28@gmail.com">dibu28@gmail.com</a></li>
<li>Joseph Spurrier <a href="mailto:github@josephspurrier.com">github@josephspurrier.com</a></li>
<li>Björn Harrtell <a href="mailto:bjorn@wololo.org">bjorn@wololo.org</a></li>
<li>Xavier Lucas <a href="mailto:xavier.lucas@corp.ovh.com">xavier.lucas@corp.ovh.com</a></li>
<li>Werner Beroux <a href="mailto:werner@beroux.com">werner@beroux.com</a></li>
<li>Brian Stengaard <a href="mailto:brian@stengaard.eu">brian@stengaard.eu</a></li>
<li>Jakub Gedeon <a href="mailto:jgedeon@sofi.com">jgedeon@sofi.com</a></li>
<li>Jim Tittsler <a href="mailto:jwt@onjapan.net">jwt@onjapan.net</a></li>
<li>Michal Witkowski <a href="mailto:michal@improbable.io">michal@improbable.io</a></li>
<li>Fabian Ruff <a href="mailto:fabian.ruff@sap.com">fabian.ruff@sap.com</a></li>
<li>Leigh Klotz <a href="mailto:klotz@quixey.com">klotz@quixey.com</a></li>
<li>Romain Lapray <a href="mailto:lapray.romain@gmail.com">lapray.romain@gmail.com</a></li>
<li>Justin R. Wilson <a href="mailto:jrw972@gmail.com">jrw972@gmail.com</a></li>
<li>Antonio Messina <a href="mailto:antonio.s.messina@gmail.com">antonio.s.messina@gmail.com</a></li>
<li>Stefan G. Weichinger <a href="mailto:office@oops.co.at">office@oops.co.at</a></li>
<li>Per Cederberg <a href="mailto:cederberg@gmail.com">cederberg@gmail.com</a></li>
<li>Radek Šenfeld <a href="mailto:rush@logic.cz">rush@logic.cz</a></li>
<li>Fredrik Fornwall <a href="mailto:fredrik@fornwall.net">fredrik@fornwall.net</a></li>
<li>Asko Tamm <a href="mailto:asko@deekit.net">asko@deekit.net</a></li>
<li>xor-zz <a href="mailto:xor@gstocco.com">xor@gstocco.com</a></li>
<li>Tomasz Mazur <a href="mailto:tmazur90@gmail.com">tmazur90@gmail.com</a></li>
<li>Marco Paganini <a href="mailto:paganini@paganini.net">paganini@paganini.net</a></li>
<li>Felix Bünemann <a href="mailto:buenemann@louis.info">buenemann@louis.info</a></li>
<li>Durval Menezes <a href="mailto:jmrclone@durval.com">jmrclone@durval.com</a></li>
<li>Luiz Carlos Rumbelsperger Viana <a href="mailto:maxd13_luiz_carlos@hotmail.com">maxd13_luiz_carlos@hotmail.com</a></li>
<li>Stefan Breunig <a href="mailto:stefan-github@yrden.de">stefan-github@yrden.de</a></li>
<li>Alishan Ladhani <a href="mailto:ali-l@users.noreply.github.com">ali-l@users.noreply.github.com</a></li>
<li>0xJAKE <a href="mailto:0xJAKE@users.noreply.github.com">0xJAKE@users.noreply.github.com</a></li>
<li>Thibault Molleman <a href="mailto:thibaultmol@users.noreply.github.com">thibaultmol@users.noreply.github.com</a></li>
<li>Scott McGillivray <a href="mailto:scott.mcgillivray@gmail.com">scott.mcgillivray@gmail.com</a></li>
<li>Bjørn Erik Pedersen <a href="mailto:bjorn.erik.pedersen@gmail.com">bjorn.erik.pedersen@gmail.com</a></li>
<li>Lukas Loesche <a href="mailto:lukas@mesosphere.io">lukas@mesosphere.io</a></li>
<li>emyarod <a href="mailto:allllaboutyou@gmail.com">allllaboutyou@gmail.com</a></li>
<li>T.C. Ferguson <a href="mailto:tcf909@gmail.com">tcf909@gmail.com</a></li>
<li>Brandur <a href="mailto:brandur@mutelight.org">brandur@mutelight.org</a></li>
<li>Dario Giovannetti <a href="mailto:dev@dariogiovannetti.net">dev@dariogiovannetti.net</a></li>
<li>Károly Oláh <a href="mailto:okaresz@aol.com">okaresz@aol.com</a></li>
<li>Jon Yergatian <a href="mailto:jon@macfanatic.ca">jon@macfanatic.ca</a></li>
<li>Jack Schmidt <a href="mailto:github@mowsey.org">github@mowsey.org</a></li>
<li>Dedsec1 <a href="mailto:Dedsec1@users.noreply.github.com">Dedsec1@users.noreply.github.com</a></li>
<li>Hisham Zarka <a href="mailto:hzarka@gmail.com">hzarka@gmail.com</a></li>
<li>Jérôme Vizcaino <a href="mailto:jerome.vizcaino@gmail.com">jerome.vizcaino@gmail.com</a></li>
<li>Mike Tesch <a href="mailto:mjt6129@rit.edu">mjt6129@rit.edu</a></li>
<li>Marvin Watson <a href="mailto:marvwatson@users.noreply.github.com">marvwatson@users.noreply.github.com</a></li>
<li>Danny Tsai <a href="mailto:danny8376@gmail.com">danny8376@gmail.com</a></li>
<li>Yoni Jah <a href="mailto:yonjah+git@gmail.com">yonjah+git@gmail.com</a> <a href="mailto:yonjah+github@gmail.com">yonjah+github@gmail.com</a></li>
<li>Stephen Harris <a href="mailto:github@spuddy.org">github@spuddy.org</a> <a href="mailto:sweharris@users.noreply.github.com">sweharris@users.noreply.github.com</a></li>
<li>Ihor Dvoretskyi <a href="mailto:ihor.dvoretskyi@gmail.com">ihor.dvoretskyi@gmail.com</a></li>
<li>Jon Craton <a href="mailto:jncraton@gmail.com">jncraton@gmail.com</a></li>
<li>Hraban Luyat <a href="mailto:hraban@0brg.net">hraban@0brg.net</a></li>
<li>Michael Ledin <a href="mailto:mledin89@gmail.com">mledin89@gmail.com</a></li>
<li>Martin Kristensen <a href="mailto:me@azgul.com">me@azgul.com</a></li>
<li>Too Much IO <a href="mailto:toomuchio@users.noreply.github.com">toomuchio@users.noreply.github.com</a></li>
<li>Anisse Astier <a href="mailto:anisse@astier.eu">anisse@astier.eu</a></li>
<li>Zahiar Ahmed <a href="mailto:zahiar@live.com">zahiar@live.com</a></li>
<li>Igor Kharin <a href="mailto:igorkharin@gmail.com">igorkharin@gmail.com</a></li>
<li>Bill Zissimopoulos <a href="mailto:billziss@navimatics.com">billziss@navimatics.com</a></li>
<li>Bob Potter <a href="mailto:bobby.potter@gmail.com">bobby.potter@gmail.com</a></li>
<li>Steven Lu <a href="mailto:tacticalazn@gmail.com">tacticalazn@gmail.com</a></li>
<li>Sjur Fredriksen <a href="mailto:sjurtf@ifi.uio.no">sjurtf@ifi.uio.no</a></li>
<li>Ruwbin <a href="mailto:hubus12345@gmail.com">hubus12345@gmail.com</a></li>
<li>Fabian Möller <a href="mailto:fabianm88@gmail.com">fabianm88@gmail.com</a> <a href="mailto:f.moeller@nynex.de">f.moeller@nynex.de</a></li>
<li>Edward Q. Bridges <a href="mailto:github@eqbridges.com">github@eqbridges.com</a></li>
<li>Vasiliy Tolstov <a href="mailto:v.tolstov@selfip.ru">v.tolstov@selfip.ru</a></li>
<li>Harshavardhana <a href="mailto:harsha@minio.io">harsha@minio.io</a></li>
<li>sainaen <a href="mailto:sainaen@gmail.com">sainaen@gmail.com</a></li>
<li>gdm85 <a href="mailto:gdm85@users.noreply.github.com">gdm85@users.noreply.github.com</a></li>
<li>Yaroslav Halchenko <a href="mailto:debian@onerussian.com">debian@onerussian.com</a></li>
<li>John Papandriopoulos <a href="mailto:jpap@users.noreply.github.com">jpap@users.noreply.github.com</a></li>
<li>Zhiming Wang <a href="mailto:zmwangx@gmail.com">zmwangx@gmail.com</a></li>
<li>Andy Pilate <a href="mailto:cubox@cubox.me">cubox@cubox.me</a></li>
<li>Oliver Heyme <a href="mailto:olihey@googlemail.com">olihey@googlemail.com</a> <a href="mailto:olihey@users.noreply.github.com">olihey@users.noreply.github.com</a> <a href="mailto:de8olihe@lego.com">de8olihe@lego.com</a></li>
<li>wuyu <a href="mailto:wuyu@yunify.com">wuyu@yunify.com</a></li>
<li>Andrei Dragomir <a href="mailto:adragomi@adobe.com">adragomi@adobe.com</a></li>
<li>Christian Brüggemann <a href="mailto:mail@cbruegg.com">mail@cbruegg.com</a></li>
<li>Alex McGrath Kraak <a href="mailto:amkdude@gmail.com">amkdude@gmail.com</a></li>
<li>bpicode <a href="mailto:bjoern.pirnay@googlemail.com">bjoern.pirnay@googlemail.com</a></li>
<li>Daniel Jagszent <a href="mailto:daniel@jagszent.de">daniel@jagszent.de</a></li>
<li>Josiah White <a href="mailto:thegenius2009@gmail.com">thegenius2009@gmail.com</a></li>
<li>Ishuah Kariuki <a href="mailto:kariuki@ishuah.com">kariuki@ishuah.com</a> <a href="mailto:ishuah91@gmail.com">ishuah91@gmail.com</a></li>
<li>Jan Varho <a href="mailto:jan@varho.org">jan@varho.org</a></li>
<li>Girish Ramakrishnan <a href="mailto:girish@cloudron.io">girish@cloudron.io</a></li>
<li>LingMan <a href="mailto:LingMan@users.noreply.github.com">LingMan@users.noreply.github.com</a></li>
<li>Jacob McNamee <a href="mailto:jacobmcnamee@gmail.com">jacobmcnamee@gmail.com</a></li>
<li>jersou <a href="mailto:jertux@gmail.com">jertux@gmail.com</a></li>
<li>thierry <a href="mailto:thierry@substantiel.fr">thierry@substantiel.fr</a></li>
<li>Simon Leinen <a href="mailto:simon.leinen@gmail.com">simon.leinen@gmail.com</a> <a href="mailto:ubuntu@s3-test.novalocal">ubuntu@s3-test.novalocal</a></li>
<li>Dan Dascalescu <a href="mailto:ddascalescu+github@gmail.com">ddascalescu+github@gmail.com</a></li>
<li>Jason Rose <a href="mailto:jason@jro.io">jason@jro.io</a></li>
<li>Andrew Starr-Bochicchio <a href="mailto:a.starr.b@gmail.com">a.starr.b@gmail.com</a></li>
<li>John Leach <a href="mailto:john@johnleach.co.uk">john@johnleach.co.uk</a></li>
<li>Corban Raun <a href="mailto:craun@instructure.com">craun@instructure.com</a></li>
<li>Pierre Carlson <a href="mailto:mpcarl@us.ibm.com">mpcarl@us.ibm.com</a></li>
<li>Ernest Borowski <a href="mailto:er.borowski@gmail.com">er.borowski@gmail.com</a></li>
<li>Remus Bunduc <a href="mailto:remus.bunduc@gmail.com">remus.bunduc@gmail.com</a></li>
<li>Iakov Davydov <a href="mailto:iakov.davydov@unil.ch">iakov.davydov@unil.ch</a> <a href="mailto:dav05.gith@myths.ru">dav05.gith@myths.ru</a></li>
<li>Jakub Tasiemski <a href="mailto:tasiemski@gmail.com">tasiemski@gmail.com</a></li>
<li>David Minor <a href="mailto:dminor@saymedia.com">dminor@saymedia.com</a></li>
<li>Tim Cooijmans <a href="mailto:cooijmans.tim@gmail.com">cooijmans.tim@gmail.com</a></li>
<li>Laurence <a href="mailto:liuxy6@gmail.com">liuxy6@gmail.com</a></li>
<li>Giovanni Pizzi <a href="mailto:gio.piz@gmail.com">gio.piz@gmail.com</a></li>
<li>Filip Bartodziej <a href="mailto:filipbartodziej@gmail.com">filipbartodziej@gmail.com</a></li>
<li>Jon Fautley <a href="mailto:jon@dead.li">jon@dead.li</a></li>
<li>lewapm <a href="mailto:32110057+lewapm@users.noreply.github.com">32110057+lewapm@users.noreply.github.com</a></li>
<li>Yassine Imounachen <a href="mailto:yassine256@gmail.com">yassine256@gmail.com</a></li>
<li>Chris Redekop <a href="mailto:chris-redekop@users.noreply.github.com">chris-redekop@users.noreply.github.com</a> <a href="mailto:chris.redekop@gmail.com">chris.redekop@gmail.com</a></li>
<li>Jon Fautley <a href="mailto:jon@adenoid.appstal.co.uk">jon@adenoid.appstal.co.uk</a></li>
<li>Will Gunn <a href="mailto:WillGunn@users.noreply.github.com">WillGunn@users.noreply.github.com</a></li>
<li>Lucas Bremgartner <a href="mailto:lucas@bremis.ch">lucas@bremis.ch</a></li>
<li>Jody Frankowski <a href="mailto:jody.frankowski@gmail.com">jody.frankowski@gmail.com</a></li>
<li>Andreas Roussos <a href="mailto:arouss1980@gmail.com">arouss1980@gmail.com</a></li>
<li>nbuchanan <a href="mailto:nbuchanan@utah.gov">nbuchanan@utah.gov</a></li>
<li>Durval Menezes <a href="mailto:rclone@durval.com">rclone@durval.com</a></li>
<li>Victor <a href="mailto:vb-github@viblo.se">vb-github@viblo.se</a></li>
<li>Mateusz <a href="mailto:pabian.mateusz@gmail.com">pabian.mateusz@gmail.com</a></li>
<li>Daniel Loader <a href="mailto:spicypixel@gmail.com">spicypixel@gmail.com</a></li>
<li>David0rk <a href="mailto:davidork@gmail.com">davidork@gmail.com</a></li>
<li>Alexander Neumann <a href="mailto:alexander@bumpern.de">alexander@bumpern.de</a></li>
<li>Giri Badanahatti <a href="mailto:gbadanahatti@us.ibm.com@Giris-MacBook-Pro.local">gbadanahatti@us.ibm.com@Giris-MacBook-Pro.local</a></li>
<li>Leo R. Lundgren <a href="mailto:leo@finalresort.org">leo@finalresort.org</a></li>
<li>wolfv <a href="mailto:wolfv6@users.noreply.github.com">wolfv6@users.noreply.github.com</a></li>
<li>Dave Pedu <a href="mailto:dave@davepedu.com">dave@davepedu.com</a></li>
<li>Stefan Lindblom <a href="mailto:lindblom@spotify.com">lindblom@spotify.com</a></li>
<li>seuffert <a href="mailto:oliver@seuffert.biz">oliver@seuffert.biz</a></li>
<li>gbadanahatti <a href="mailto:37121690+gbadanahatti@users.noreply.github.com">37121690+gbadanahatti@users.noreply.github.com</a></li>
<li>Keith Goldfarb <a href="mailto:barkofdelight@gmail.com">barkofdelight@gmail.com</a></li>
<li>Steve Kriss <a href="mailto:steve@heptio.com">steve@heptio.com</a></li>
<li>Chih-Hsuan Yen <a href="mailto:yan12125@gmail.com">yan12125@gmail.com</a></li>
<li>Alexander Neumann <a href="mailto:fd0@users.noreply.github.com">fd0@users.noreply.github.com</a></li>
<li>Matt Holt <a href="mailto:mholt@users.noreply.github.com">mholt@users.noreply.github.com</a></li>
<li>Eri Bastos <a href="mailto:bastos.eri@gmail.com">bastos.eri@gmail.com</a></li>
<li>Michael P. Dubner <a href="mailto:pywebmail@list.ru">pywebmail@list.ru</a></li>
<li>Antoine GIRARD <a href="mailto:sapk@users.noreply.github.com">sapk@users.noreply.github.com</a></li>
<li>Mateusz Piotrowski <a href="mailto:mpp302@gmail.com">mpp302@gmail.com</a></li>
<li>Animosity022 <a href="mailto:animosity22@users.noreply.github.com">animosity22@users.noreply.github.com</a> <a href="mailto:earl.texter@gmail.com">earl.texter@gmail.com</a></li>
<li>Peter Baumgartner <a href="mailto:pete@lincolnloop.com">pete@lincolnloop.com</a></li>
<li>Craig Rachel <a href="mailto:craig@craigrachel.com">craig@craigrachel.com</a></li>
<li>Michael G. Noll <a href="mailto:miguno@users.noreply.github.com">miguno@users.noreply.github.com</a></li>
<li>hensur <a href="mailto:me@hensur.de">me@hensur.de</a></li>
<li>Oliver Heyme <a href="mailto:de8olihe@lego.com">de8olihe@lego.com</a></li>
<li>Richard Yang <a href="mailto:richard@yenforyang.com">richard@yenforyang.com</a></li>
<li>Piotr Oleszczyk <a href="mailto:piotr.oleszczyk@gmail.com">piotr.oleszczyk@gmail.com</a></li>
<li>Rodrigo <a href="mailto:rodarima@gmail.com">rodarima@gmail.com</a></li>
<li>NoLooseEnds <a href="mailto:NoLooseEnds@users.noreply.github.com">NoLooseEnds@users.noreply.github.com</a></li>
<li>Jakub Karlicek <a href="mailto:jakub@karlicek.me">jakub@karlicek.me</a></li>
<li>John Clayton <a href="mailto:john@codemonkeylabs.com">john@codemonkeylabs.com</a></li>
<li>Kasper Byrdal Nielsen <a href="mailto:byrdal76@gmail.com">byrdal76@gmail.com</a></li>
<li>Benjamin Joseph Dag <a href="mailto:bjdag1234@users.noreply.github.com">bjdag1234@users.noreply.github.com</a></li>
<li>themylogin <a href="mailto:themylogin@gmail.com">themylogin@gmail.com</a></li>
<li>Onno Zweers <a href="mailto:onno.zweers@surfsara.nl">onno.zweers@surfsara.nl</a></li>
<li>Jasper Lievisse Adriaanse <a href="mailto:jasper@humppa.nl">jasper@humppa.nl</a></li>
<li>sandeepkru <a href="mailto:sandeep.ummadi@gmail.com">sandeep.ummadi@gmail.com</a> <a href="mailto:sandeepkru@users.noreply.github.com">sandeepkru@users.noreply.github.com</a></li>
<li>HerrH <a href="mailto:atomtigerzoo@users.noreply.github.com">atomtigerzoo@users.noreply.github.com</a></li>
<li>Andrew <a href="mailto:4030760+sparkyman215@users.noreply.github.com">4030760+sparkyman215@users.noreply.github.com</a></li>
<li>dan smith <a href="mailto:XX1011@gmail.com">XX1011@gmail.com</a></li>
<li>Oleg Kovalov <a href="mailto:iamolegkovalov@gmail.com">iamolegkovalov@gmail.com</a></li>
<li>Ruben Vandamme <a href="mailto:github-com-00ff86@vandamme.email">github-com-00ff86@vandamme.email</a></li>
<li>Cnly <a href="mailto:minecnly@gmail.com">minecnly@gmail.com</a></li>
<li>Andres Alvarez <a href="mailto:1671935+kir4h@users.noreply.github.com">1671935+kir4h@users.noreply.github.com</a></li>
<li>reddi1 <a href="mailto:xreddi@gmail.com">xreddi@gmail.com</a></li>
<li>Matt Tucker <a href="mailto:matthewtckr@gmail.com">matthewtckr@gmail.com</a></li>
<li>Sebastian Bünger <a href="mailto:buengese@gmail.com">buengese@gmail.com</a></li>
<li>Martin Polden <a href="mailto:mpolden@mpolden.no">mpolden@mpolden.no</a></li>
<li>Alex Chen <a href="mailto:Cnly@users.noreply.github.com">Cnly@users.noreply.github.com</a></li>
<li>Denis <a href="mailto:deniskovpen@gmail.com">deniskovpen@gmail.com</a></li>
<li>bsteiss <a href="mailto:35940619+bsteiss@users.noreply.github.com">35940619+bsteiss@users.noreply.github.com</a></li>
<li>Cédric Connes <a href="mailto:cedric.connes@gmail.com">cedric.connes@gmail.com</a></li>
<li>Dr. Tobias Quathamer <a href="mailto:toddy15@users.noreply.github.com">toddy15@users.noreply.github.com</a></li>
<li>dcpu <a href="mailto:42736967+dcpu@users.noreply.github.com">42736967+dcpu@users.noreply.github.com</a></li>
<li>Sheldon Rupp <a href="mailto:me@shel.io">me@shel.io</a></li>
<li>albertony <a href="mailto:12441419+albertony@users.noreply.github.com">12441419+albertony@users.noreply.github.com</a></li>
<li>cron410 <a href="mailto:cron410@gmail.com">cron410@gmail.com</a></li>
<li>Anagh Kumar Baranwal <a href="mailto:anaghk.dos@gmail.com">anaghk.dos@gmail.com</a></li>
<li>Felix Brucker <a href="mailto:felix@felixbrucker.com">felix@felixbrucker.com</a></li>
<li>Santiago Rodríguez <a href="mailto:scollazo@users.noreply.github.com">scollazo@users.noreply.github.com</a></li>
<li>Craig Miskell <a href="mailto:craig.miskell@fluxfederation.com">craig.miskell@fluxfederation.com</a></li>
<li>Antoine GIRARD <a href="mailto:sapk@sapk.fr">sapk@sapk.fr</a></li>
<li>Joanna Marek <a href="mailto:joanna.marek@u2i.com">joanna.marek@u2i.com</a></li>
<li>frenos <a href="mailto:frenos@users.noreply.github.com">frenos@users.noreply.github.com</a></li>
<li>ssaqua <a href="mailto:ssaqua@users.noreply.github.com">ssaqua@users.noreply.github.com</a></li>
<li>xnaas <a href="mailto:me@xnaas.info">me@xnaas.info</a></li>
<li>Frantisek Fuka <a href="mailto:fuka@fuxoft.cz">fuka@fuxoft.cz</a></li>
<li>Paul Kohout <a href="mailto:pauljkohout@yahoo.com">pauljkohout@yahoo.com</a></li>
<li>dcpu <a href="mailto:43330287+dcpu@users.noreply.github.com">43330287+dcpu@users.noreply.github.com</a></li>
<li>jackyzy823 <a href="mailto:jackyzy823@gmail.com">jackyzy823@gmail.com</a></li>
<li>David Haguenauer <a href="mailto:ml@kurokatta.org">ml@kurokatta.org</a></li>
<li>teresy <a href="mailto:hi.teresy@gmail.com">hi.teresy@gmail.com</a></li>
<li>buergi <a href="mailto:patbuergi@gmx.de">patbuergi@gmx.de</a></li>
<li>Florian Gamboeck <a href="mailto:mail@floga.de">mail@floga.de</a></li>
<li>Ralf Hemberger <a href="mailto:10364191+rhemberger@users.noreply.github.com">10364191+rhemberger@users.noreply.github.com</a></li>
<li>Scott Edlund <a href="mailto:sedlund@users.noreply.github.com">sedlund@users.noreply.github.com</a></li>
<li>Erik Swanson <a href="mailto:erik@retailnext.net">erik@retailnext.net</a></li>
<li>Jake Coggiano <a href="mailto:jake@stripe.com">jake@stripe.com</a></li>
<li>brused27 <a href="mailto:brused27@noemailaddress">brused27@noemailaddress</a></li>
<li>Peter Kaminski <a href="mailto:kaminski@istori.com">kaminski@istori.com</a></li>
<li>Henry Ptasinski <a href="mailto:henry@logout.com">henry@logout.com</a></li>
<li>Alexander <a href="mailto:kharkovalexander@gmail.com">kharkovalexander@gmail.com</a></li>
<li>Garry McNulty <a href="mailto:garrmcnu@gmail.com">garrmcnu@gmail.com</a></li>
<li>Mathieu Carbou <a href="mailto:mathieu.carbou@gmail.com">mathieu.carbou@gmail.com</a></li>
<li>Mark Otway <a href="mailto:mark@otway.com">mark@otway.com</a></li>
<li>William Cocker <a href="mailto:37018962+WilliamCocker@users.noreply.github.com">37018962+WilliamCocker@users.noreply.github.com</a></li>
<li>François Leurent <a href="mailto:131.js@cloudyks.org">131.js@cloudyks.org</a></li>
<li>Arkadius Stefanski <a href="mailto:arkste@gmail.com">arkste@gmail.com</a></li>
<li>Jay <a href="mailto:dev@jaygoel.com">dev@jaygoel.com</a></li>
<li>andrea rota <a href="mailto:a@xelera.eu">a@xelera.eu</a></li>
<li>nicolov <a href="mailto:nicolov@users.noreply.github.com">nicolov@users.noreply.github.com</a></li>
<li>Dario Guzik <a href="mailto:dario@guzik.com.ar">dario@guzik.com.ar</a></li>
<li>qip <a href="mailto:qip@users.noreply.github.com">qip@users.noreply.github.com</a></li>
<li>yair@unicorn <a href="mailto:yair@unicorn">yair@unicorn</a></li>
<li>Matt Robinson <a href="mailto:brimstone@the.narro.ws">brimstone@the.narro.ws</a></li>
<li>kayrus <a href="mailto:kay.diam@gmail.com">kay.diam@gmail.com</a></li>
<li>Rémy Léone <a href="mailto:remy.leone@gmail.com">remy.leone@gmail.com</a></li>
<li>Wojciech Smigielski <a href="mailto:wojciech.hieronim.smigielski@gmail.com">wojciech.hieronim.smigielski@gmail.com</a></li>
<li>weetmuts <a href="mailto:oehrstroem@gmail.com">oehrstroem@gmail.com</a></li>
<li>Jonathan <a href="mailto:vanillajonathan@users.noreply.github.com">vanillajonathan@users.noreply.github.com</a></li>
<li>James Carpenter <a href="mailto:orbsmiv@users.noreply.github.com">orbsmiv@users.noreply.github.com</a></li>
<li>Vince <a href="mailto:vince0villamora@gmail.com">vince0villamora@gmail.com</a></li>
<li>Nestar47 <a href="mailto:47841759+Nestar47@users.noreply.github.com">47841759+Nestar47@users.noreply.github.com</a></li>
<li>Six <a href="mailto:brbsix@gmail.com">brbsix@gmail.com</a></li>
<li>Alexandru Bumbacea <a href="mailto:alexandru.bumbacea@booking.com">alexandru.bumbacea@booking.com</a></li>
<li>calisro <a href="mailto:robert.calistri@gmail.com">robert.calistri@gmail.com</a></li>
<li>Dr.Rx <a href="mailto:david.rey@nventive.com">david.rey@nventive.com</a></li>
<li>marcintustin <a href="mailto:marcintustin@users.noreply.github.com">marcintustin@users.noreply.github.com</a></li>
<li>jaKa Močnik <a href="mailto:jaka@koofr.net">jaka@koofr.net</a></li>
<li>Fionera <a href="mailto:fionera@fionera.de">fionera@fionera.de</a></li>
<li>Dan Walters <a href="mailto:dan@walters.io">dan@walters.io</a></li>
<li>Danil Semelenov <a href="mailto:sgtpep@users.noreply.github.com">sgtpep@users.noreply.github.com</a></li>
<li>xopez <a href="mailto:28950736+xopez@users.noreply.github.com">28950736+xopez@users.noreply.github.com</a></li>
<li>Ben Boeckel <a href="mailto:mathstuf@gmail.com">mathstuf@gmail.com</a></li>
<li>Manu <a href="mailto:manu@snapdragon.cc">manu@snapdragon.cc</a></li>
<li>Kyle E. Mitchell <a href="mailto:kyle@kemitchell.com">kyle@kemitchell.com</a></li>
<li>Gary Kim <a href="mailto:gary@garykim.dev">gary@garykim.dev</a></li>
<li>Jon <a href="mailto:jonathn@github.com">jonathn@github.com</a></li>
<li>Jeff Quinn <a href="mailto:jeffrey.quinn@bluevoyant.com">jeffrey.quinn@bluevoyant.com</a></li>
<li>Peter Berbec <a href="mailto:peter@berbec.com">peter@berbec.com</a></li>
<li>didil <a href="mailto:1284255+didil@users.noreply.github.com">1284255+didil@users.noreply.github.com</a></li>
<li>id01 <a href="mailto:gaviniboom@gmail.com">gaviniboom@gmail.com</a></li>
<li>Robert Marko <a href="mailto:robimarko@gmail.com">robimarko@gmail.com</a></li>
<li>Philip Harvey <a href="mailto:32467456+pharveybattelle@users.noreply.github.com">32467456+pharveybattelle@users.noreply.github.com</a></li>
<li>JorisE <a href="mailto:JorisE@users.noreply.github.com">JorisE@users.noreply.github.com</a></li>
<li>garry415 <a href="mailto:garry.415@gmail.com">garry.415@gmail.com</a></li>
<li>forgems <a href="mailto:forgems@gmail.com">forgems@gmail.com</a></li>
<li>Florian Apolloner <a href="mailto:florian@apolloner.eu">florian@apolloner.eu</a></li>
<li>Aleksandar Jankovic <a href="mailto:office@ajankovic.com">office@ajankovic.com</a></li>
</ul>
<h1 id="contact-the-rclone-project">Contact the rclone project</h1>
<h2 id="forum">Forum</h2>
<p>Forum for questions and general discussion:</p>
<ul>
<li>https://forum.rclone.org</li>
</ul>
<h2 id="gitub-project">Gitub project</h2>
<p>The project website is at:</p>
<ul>
<li>https://github.com/rclone/rclone</li>
</ul>
<p>There you can file bug reports or contribute pull requests.</p>
<h2 id="twitter">Twitter</h2>
<p>You can also follow me on twitter for rclone announcements:</p>
<ul>
<li><span class="citation" data-cites="njcw">[@njcw]</span>(https://twitter.com/njcw)</li>
</ul>
<h2 id="email">Email</h2>
<p>Or if all else fails or you want to ask something private or confidential email <a href="mailto:nick@craig-wood.com">Nick Craig-Wood</a></p>
</body>
</html>