Backup of My Cloud to Amazon Cloud and/or IDrive backup service

Rclone is an excellent solution combined with the RaspberryPi.

  • First I built a standard Raspbian Raspberry Pi
  • Installed Rclone on it - you need the Linux ARM - 32 Bit version

How to install:

unzip rclone-v1.28-linux-arm.zip
cd rclone-v1.28-linux-arm
#copy binary file
sudo cp rclone /usr/sbin/
sudo chown root:root /usr/sbin/rclone
sudo chmod 755 /usr/sbin/rclone
#install manpage
sudo mkdir -p /usr/local/share/man/man1
sudo cp rclone.1 /usr/local/share/man/man1/
sudo mandb

rclone config

This configuration depends on the cloud service you are using.

  • Then you need to initiate a backup

    Example:
    rclone copy source:sourcepath dest:destpath

  • You probably then want to schedule backups - use crontab or similar.

Let me know if you want any further details on this
Gilad