Howto duplicati: Difference between revisions

From Vidalinux Wiki
Jump to navigation Jump to search
Line 20: Line 20:
  su -c 'curl https://download.mono-project.com/repo/centos8-stable.repo | tee /etc/yum.repos.d/mono-centos8-stable.repo'
  su -c 'curl https://download.mono-project.com/repo/centos8-stable.repo | tee /etc/yum.repos.d/mono-centos8-stable.repo'
install mono-devel:
install mono-devel:
  yum install mono-devel
  yum install mono-devel -y
install dependencies:
yum install libappindicator-gtk3 sqlite -y
download and install duplicati rpm:
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
  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

Revision as of 19:58, 18 January 2023

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 -y

install dependencies:

yum install libappindicator-gtk3 sqlite -y

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