Created
January 8, 2018 06:14
-
-
Save gene1wood/ea8fe5c897ae34bd5d466970fc0c1b93 to your computer and use it in GitHub Desktop.
How to install Duplicati on CentOS 6
This file contains 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 mono | |
rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF" | |
yum-config-manager --add-repo http://download.mono-project.com/repo/centos6/ | |
yum install mono-complete | |
# Install duplicati, ignoring dependencies | |
wget https://updates.duplicati.com/beta/duplicati-2.0.2.1-2.0.2.1_beta_20170801.noarch.rpm | |
rpm -ivh --nodeps duplicati-2.0.2.1-2.0.2.1_beta_20170801.noarch.rpm | |
# Create init script and enable the service | |
wget https://gist.githubusercontent.com/gene1wood/af556f68c421905598a7f6382616ed4a/raw/c964060e2f579b1a7d4f0c915423dda970059688/duplicati -O /etc/init.d/duplicati | |
chmod 755 /etc/init.d/duplicati | |
chkconfig --add duplicati | |
chkconfig duplicati on | |
service duplicati start |
nudge-sangbeomhan
commented
Sep 28, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment