2015-06-06 11:05:21 +02:00
|
|
|
---
|
|
|
|
title: "Install"
|
|
|
|
description: "Rclone Installation"
|
2018-08-28 16:30:47 +02:00
|
|
|
date: "2018-08-28"
|
2016-04-18 19:55:07 +02:00
|
|
|
---
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2016-10-06 18:20:45 +02:00
|
|
|
# Install #
|
2015-06-06 11:05:21 +02:00
|
|
|
|
|
|
|
Rclone is a Go program and comes as a single binary file.
|
|
|
|
|
2016-10-06 18:20:45 +02:00
|
|
|
## Quickstart ##
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2016-10-06 18:20:45 +02:00
|
|
|
* [Download](/downloads/) the relevant binary.
|
2018-08-28 16:30:47 +02:00
|
|
|
* Extract the `rclone` or `rclone.exe` binary from the archive
|
2017-03-29 11:06:22 +02:00
|
|
|
* Run `rclone config` to setup. See [rclone config docs](/docs/) for more details.
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2016-10-06 18:20:45 +02:00
|
|
|
See below for some expanded Linux / macOS instructions.
|
2015-06-14 16:04:39 +02:00
|
|
|
|
|
|
|
See the [Usage section](/docs/) of the docs for how to use rclone, or
|
2015-06-06 11:05:21 +02:00
|
|
|
run `rclone -h`.
|
2015-06-28 11:38:27 +02:00
|
|
|
|
2017-12-04 21:58:14 +01:00
|
|
|
## Script installation ##
|
|
|
|
|
2018-02-08 15:56:39 +01:00
|
|
|
To install rclone on Linux/macOS/BSD systems, run:
|
2017-12-04 21:58:14 +01:00
|
|
|
|
|
|
|
curl https://rclone.org/install.sh | sudo bash
|
|
|
|
|
|
|
|
For beta installation, run:
|
|
|
|
|
|
|
|
curl https://rclone.org/install.sh | sudo bash -s beta
|
|
|
|
|
2017-12-14 12:00:22 +01:00
|
|
|
Note that this script checks the version of rclone installed first and
|
|
|
|
won't re-download if not needed.
|
|
|
|
|
2016-10-06 18:20:45 +02:00
|
|
|
## Linux installation from precompiled binary ##
|
|
|
|
|
|
|
|
Fetch and unpack
|
|
|
|
|
2017-03-29 11:06:22 +02:00
|
|
|
curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip
|
2016-10-06 18:20:45 +02:00
|
|
|
unzip rclone-current-linux-amd64.zip
|
|
|
|
cd rclone-*-linux-amd64
|
|
|
|
|
|
|
|
Copy binary file
|
2015-06-28 11:38:27 +02:00
|
|
|
|
2017-02-26 11:09:23 +01:00
|
|
|
sudo cp rclone /usr/bin/
|
|
|
|
sudo chown root:root /usr/bin/rclone
|
|
|
|
sudo chmod 755 /usr/bin/rclone
|
2016-10-06 18:20:45 +02:00
|
|
|
|
|
|
|
Install manpage
|
|
|
|
|
2015-06-28 11:38:27 +02:00
|
|
|
sudo mkdir -p /usr/local/share/man/man1
|
|
|
|
sudo cp rclone.1 /usr/local/share/man/man1/
|
|
|
|
sudo mandb
|
2016-07-09 14:47:55 +02:00
|
|
|
|
2017-03-29 11:06:22 +02:00
|
|
|
Run `rclone config` to setup. See [rclone config docs](/docs/) for more details.
|
2016-10-06 18:20:45 +02:00
|
|
|
|
|
|
|
rclone config
|
|
|
|
|
|
|
|
## macOS installation from precompiled binary ##
|
|
|
|
|
|
|
|
Download the latest version of rclone.
|
|
|
|
|
2017-03-29 11:06:22 +02:00
|
|
|
cd && curl -O https://downloads.rclone.org/rclone-current-osx-amd64.zip
|
2016-10-06 18:20:45 +02:00
|
|
|
|
|
|
|
Unzip the download and cd to the extracted folder.
|
|
|
|
|
|
|
|
unzip -a rclone-current-osx-amd64.zip && cd rclone-*-osx-amd64
|
|
|
|
|
|
|
|
Move rclone to your $PATH. You will be prompted for your password.
|
|
|
|
|
2017-09-26 16:58:03 +02:00
|
|
|
sudo mkdir -p /usr/local/bin
|
2016-10-06 18:20:45 +02:00
|
|
|
sudo mv rclone /usr/local/bin/
|
|
|
|
|
2017-09-26 16:58:03 +02:00
|
|
|
(the `mkdir` command is safe to run, even if the directory already exists).
|
|
|
|
|
2016-10-06 18:20:45 +02:00
|
|
|
Remove the leftover files.
|
|
|
|
|
|
|
|
cd .. && rm -rf rclone-*-osx-amd64 rclone-current-osx-amd64.zip
|
|
|
|
|
2017-03-29 11:06:22 +02:00
|
|
|
Run `rclone config` to setup. See [rclone config docs](/docs/) for more details.
|
2016-10-06 18:20:45 +02:00
|
|
|
|
|
|
|
rclone config
|
|
|
|
|
2019-09-02 15:30:11 +02:00
|
|
|
## Install with docker ##
|
|
|
|
|
|
|
|
The rclone maintains a [docker image for rclone](https://hub.docker.com/r/rclone/rclone).
|
|
|
|
These images are autobuilt by docker hub from the rclone source based
|
|
|
|
on a minimal Alpine linux image.
|
|
|
|
|
|
|
|
The `:latest` tag will always point to the latest stable release. You
|
|
|
|
can use the `:beta` tag to get the latest build from master. You can
|
|
|
|
also use version tags, eg `:1.49.1`, `:1.49` or `:1`.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker pull rclone/rclone:latest
|
|
|
|
latest: Pulling from rclone/rclone
|
|
|
|
Digest: sha256:0e0ced72671989bb837fea8e88578b3fc48371aa45d209663683e24cfdaa0e11
|
|
|
|
...
|
|
|
|
$ docker run --rm rclone/rclone:latest version
|
|
|
|
rclone v1.49.1
|
|
|
|
- os/arch: linux/amd64
|
|
|
|
- go version: go1.12.9
|
|
|
|
```
|
|
|
|
|
2019-09-17 07:15:48 +02:00
|
|
|
There are a few command line options to consider when starting an rclone Docker container
|
|
|
|
from the rclone image.
|
2019-09-02 15:30:11 +02:00
|
|
|
|
2019-09-17 07:15:48 +02:00
|
|
|
- You need to mount the host rclone config dir at `/config` into the Docker container.
|
|
|
|
Due to the way in which rclone updates tokens inside its config file, you need to
|
|
|
|
mount a host config dir, not just a host config file.
|
|
|
|
|
|
|
|
- You need to mount a host data dir at `/data` into the Docker container.
|
|
|
|
|
|
|
|
- By default, the rclone binary inside a Docker container runs with UID=0 (root).
|
|
|
|
As a result, all files created in a run will have UID=0. If your config and data files
|
|
|
|
reside on the host with a non-root UID:GID, you need to pass these on the container
|
|
|
|
start command line.
|
|
|
|
|
|
|
|
- It is possible to use `rclone mount` inside a userspace Docker container, and expose
|
|
|
|
the resulting fuse mount to the host. The exact `docker run` options to do that might
|
|
|
|
vary slightly between hosts. See, e.g. the discussion in this
|
|
|
|
[thread](https://github.com/moby/moby/issues/9448).
|
|
|
|
|
|
|
|
You also need to mount the host `/etc/passwd` and `/etc/group` for fuse to work inside
|
|
|
|
the container.
|
|
|
|
|
|
|
|
Here are some commands tested on an Ubuntu 18.04.3 host:
|
2019-09-02 15:30:11 +02:00
|
|
|
|
|
|
|
```
|
2019-09-17 07:15:48 +02:00
|
|
|
# config on host at ~/.config/rclone/rclone.conf
|
|
|
|
# data on host at ~/data
|
|
|
|
|
|
|
|
# make sure the config is ok by listing the remotes
|
|
|
|
docker run --rm \
|
|
|
|
--volume ~/.config/rclone:/config/rclone \
|
|
|
|
--volume ~/data:/data:shared \
|
|
|
|
--user $(id -u):$(id -g) \
|
|
|
|
rclone/rclone \
|
|
|
|
listremotes
|
|
|
|
|
|
|
|
# perform mount inside Docker container, expose result to host
|
|
|
|
mkdir -p ~/data/mount
|
|
|
|
docker run --rm \
|
|
|
|
--volume ~/.config/rclone:/config/rclone \
|
|
|
|
--volume ~/data:/data:shared \
|
|
|
|
--user $(id -u):$(id -g) \
|
|
|
|
--volume /etc/passwd:/etc/passwd:ro --volume /etc/group:/etc/group:ro \
|
|
|
|
--device /dev/fuse --cap-add SYS_ADMIN --security-opt apparmor:unconfined \
|
|
|
|
rclone/rclone \
|
|
|
|
mount dropbox:Photos /data/mount &
|
|
|
|
ls ~/data/mount
|
|
|
|
kill %1
|
2019-09-02 15:30:11 +02:00
|
|
|
```
|
|
|
|
|
2016-10-06 18:20:45 +02:00
|
|
|
## Install from source ##
|
|
|
|
|
2018-08-28 16:30:47 +02:00
|
|
|
Make sure you have at least [Go](https://golang.org/) 1.7
|
|
|
|
installed. [Download go](https://golang.org/dl/) if necessary. The
|
|
|
|
latest release is recommended. Then
|
2016-10-06 18:20:45 +02:00
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
git clone https://github.com/rclone/rclone.git
|
2018-08-28 16:30:47 +02:00
|
|
|
cd rclone
|
|
|
|
go build
|
|
|
|
./rclone version
|
|
|
|
|
|
|
|
You can also build and install rclone in the
|
|
|
|
[GOPATH](https://github.com/golang/go/wiki/GOPATH) (which defaults to
|
|
|
|
`~/go`) with:
|
2016-10-06 18:20:45 +02:00
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
go get -u -v github.com/rclone/rclone
|
2016-10-06 18:20:45 +02:00
|
|
|
|
2018-08-28 16:30:47 +02:00
|
|
|
and this will build the binary in `$GOPATH/bin` (`~/go/bin/rclone` by
|
|
|
|
default) after downloading the source to
|
2019-07-28 19:47:38 +02:00
|
|
|
`$GOPATH/src/github.com/rclone/rclone` (`~/go/src/github.com/rclone/rclone`
|
2018-08-28 16:30:47 +02:00
|
|
|
by default).
|
2016-10-06 18:20:45 +02:00
|
|
|
|
|
|
|
## Installation with Ansible ##
|
2016-07-09 14:47:55 +02:00
|
|
|
|
|
|
|
This can be done with [Stefan Weichinger's ansible
|
|
|
|
role](https://github.com/stefangweichinger/ansible-rclone).
|
|
|
|
|
|
|
|
Instructions
|
|
|
|
|
|
|
|
1. `git clone https://github.com/stefangweichinger/ansible-rclone.git` into your local roles-directory
|
|
|
|
2. add the role to the hosts you want rclone installed to:
|
|
|
|
|
|
|
|
```
|
|
|
|
- hosts: rclone-hosts
|
|
|
|
roles:
|
|
|
|
- rclone
|
|
|
|
```
|