Line 67: |
Line 67: |
| === Installation === | | === Installation === |
| | | |
− | TBD
| + | Rclone can be installed as follows: (https://rclone.org/install/) |
| + | |
| + | <code> |
| + | curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip<br /> |
| + | unzip rclone-current-linux-amd64.zip<br /> |
| + | cd rclone-*-linux-amd64<br /> |
| + | sudo cp rclone /usr/bin/<br /> |
| + | sudo chown root:root /usr/bin/rclone<br /> |
| + | sudo chmod 755 /usr/bin/rclone<br /> |
| + | </code> |
| + | |
| + | Then you can the configuration process: |
| + | |
| + | <code>rclone config</code><br /> |
| + | and follow the instructions for a headless server <br /> |
| + | |
| + | For Dropbox I had to run rclone on a desktop with a browser, giving permission for rcloe to be allowed to connect to Dropbox and then copy and pasting a key string across to the smeserver. |
| + | |
| === Uninstall === | | === Uninstall === |
| | | |