I've used Cygwin with rdiff-backup before to backup a Windows box to a backend Linux server over SSH, but given the success that I've had with Attic backup, I'm going to try this with the fork of Attic which is called "Borg".
Step #1 - Download and install Cygwin. The following packages that need to be installed before you can install borg backup.
binutils (not sure)
gcc-g++
libuuid-devel (not sure)
openssl-devel
python3
python3-setuputils
wget
Step #2 is to install "pip" inside the Cygwin environment.
$ cd ~/
$ mkdir -p ~/downloads/python
$ cd ~/downloads/python
$ wget https://bootstrap.pypa.io/get-pip.py
$ python3 get-pip.py
$ pip3 --version
The "pip" command should return a version number string if it is installed.
Step #3
$ pip3 install borgbackup
Step #4
At this point, if you type "borg" at the command prompt, you should see information about Borg such as the version and list of commands.
No comments:
Post a Comment