Howto duplicati: Difference between revisions
Jump to navigation
Jump to search
Mandulete1 (talk | contribs) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
= install duplicati archlinux = | = install duplicati archlinux = | ||
installing yay as normal user: | installing yay as normal user: | ||
pacman -Sy base-devel --noconfirm | |||
git clone https://aur.archlinux.org/yay.git | git clone https://aur.archlinux.org/yay.git | ||
cd yay | cd yay | ||
Line 41: | Line 42: | ||
please follow the link bellow for other platforms: | please follow the link bellow for other platforms: | ||
https://duplicati.readthedocs.io/en/latest/02-installation/ | https://duplicati.readthedocs.io/en/latest/02-installation/ | ||
= references = | |||
* https://wasabi-support.zendesk.com/hc/en-us/articles/115001600152-How-do-I-use-Duplicati-with-Wasabi- | |||
* https://wasabi-support.zendesk.com/hc/en-us/articles/360019677192-Creating-a-Wasabi-API-Access-Key-Set |
Latest revision as of 13:35, 15 June 2023
install duplicati archlinux
installing yay as normal user:
pacman -Sy base-devel --noconfirm git clone https://aur.archlinux.org/yay.git cd yay makepkg -si
install duplicati:
yay -S duplicati-canary-bin
start and enable duplicati to start at system reboot:
systemctl --user start duplicati && systemctl --user enable duplicati
verify the status of the duplicati:
systemctl status duplicati
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
verify the status of the duplicati:
systemctl status duplicati
other platforms
please follow the link bellow for other platforms:
https://duplicati.readthedocs.io/en/latest/02-installation/