Skip to content

Instantly share code, notes, and snippets.

@jespernohr
Last active August 12, 2018 07:57
Show Gist options
  • Select an option

  • Save jespernohr/f1724ac6a53fba71104c to your computer and use it in GitHub Desktop.

Select an option

Save jespernohr/f1724ac6a53fba71104c to your computer and use it in GitHub Desktop.
# 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