Last active
August 12, 2018 07:57
-
-
Save jespernohr/f1724ac6a53fba71104c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install repository in centos 7 | |
| sudo yum install http://mirrors.kernel.org/fedora-epel/7/x86_64/e/epel-release-7-5.noarch.rpm | |
| # Update install catalog | |
| sudo yum update | |
| # Install the required development tools | |
| sudo yum groupinstall Development Tools | |
| # Install the required python tools | |
| sudo yum install python-devel librsync-devel librsync python-setuptools python-lockfile python-boto wget | |
| # Fetch the Duplicity source | |
| sudo wget https://code.launchpad.net/duplicity/0.7-series/0.7.06/+download/duplicity-0.7.06.tar.gz | |
| # Extract the source | |
| sudo tar xvf duplicity-0.7.06.tar.gz | |
| # Move to the extracted folder | |
| cd duplicity-0.7.06/ | |
| # Build the source | |
| sudo python setup.py build | |
| # Install Duplicity | |
| sudo python setup.py install | |
| # Verify | |
| duplicity –version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment