Skip to content

Instantly share code, notes, and snippets.

@kharloss
Created January 27, 2019 20:45
Show Gist options
  • Save kharloss/548b2f4793cb5398cd38e2bc231ceb6b to your computer and use it in GitHub Desktop.
Save kharloss/548b2f4793cb5398cd38e2bc231ceb6b to your computer and use it in GitHub Desktop.
Install duplicati Linux / Ubuntu
#!/bin/bash
####################################
#
# Install Duplicati on Ubuntu/Debian
#
####################################
# check if latest version download latest Duplicati version
cd /tmp && wget https://updates.duplicati.com/beta/duplicati_2.0.4.5-1_all.deb
# Install package
sudo dpkg -i duplicati_2.0.4.5-1_all.deb
# Install dependencies
sudo apt-get --fix-broken install
# Run / Stop service
# enable duplicati at startup
sudo systemctl stop duplicati.service
sudo systemctl start duplicati.service
sudo systemctl enable duplicati.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment