Instalar Duplicity en CentOS 6

Hola

estaba haciendo unos backups por rsysnc de webs y directorios y tal y oye, si ya hago el rsync, y lo encripto y tal, pues si la herramienta Duplicity lo hace pues mejor 馃檪

1. Repositorios 煤tiles

# rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt
# wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
# rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

# wget http://ftp.cica.es/epel/6/i386/repoview/epel-release.html
# wget http://ftp.cica.es/epel/6/i386/epel-release-6-7.noarch.rpm
# rpm -Uvh epel-release-6-7.noarch.rpm

2. Duplicity

# yum install duplicity python-paramiko python-devel librsync-devel librsync -y
# duplicity --version
duplicity 0.6.18

Otra manera de instalaci贸n ser铆a:

# yum install duplicity python-paramiko python-devel librsync-devel librsync -y
# wget http://code.launchpad.net/duplicity/0.6-series/0.6.20/+download/duplicity-0.6.20.tar.gz
# tar xf duplicity-0.6.20.tar.gz
# cd duplicity
# python ./setup.py build
# python ./setup.py install
# duplicity --version
duplicity 0.6.20

Leave a Reply

Your email address will not be published. Required fields are marked *