Howto duplicati

From Vidalinux Wiki
Revision as of 19:53, 18 January 2023 by Mandulete1 (talk | contribs)
Jump to navigation Jump to search

install duplicati archlinux

installing yay as normal user:

git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si

install duplicati ubuntu/debian

download the installation file:

wget https://updates.duplicati.com/beta/duplicati_2.0.6.3-1_all.deb

install it using the following command:

apt install ./duplicati_2.0.6.3-1_all.deb

install the mono-complete package:

apt install mono-complete -y

start and enable duplicati to start at system reboot:

systemctl start duplicati && systemctl enable duplicati

verify the status of the duplicati:

systemctl status duplicati

= rhel8 and variants

install mono repo:

rpmkeys --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"
su -c 'curl https://download.mono-project.com/repo/centos8-stable.repo | tee /etc/yum.repos.d/mono-centos8-stable.repo'

install mono-devel:

yum install mono-devel

download and install duplicati rpm:

wget https://github.com/duplicati/duplicati/releases/download/v2.0.6.104-2.0.6.104_canary_2022-06-15/duplicati-2.0.6.104-2.0.6.104_canary_20220615.noarch.rpm
rpm -ivh --nodeps duplicati-2.0.6.104-2.0.6.104_canary_20220615.noarch.rpm

start and enable duplicati to start at system reboot:

systemctl start duplicati && systemctl enable duplicati