duply command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
duply: command not found
or when using sudo you get the following error message
sudo: duply: command not found
Solutions to duply: command not found
How To Fix duply: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu duply is provided by duply package.
duply is:
duply is a shell front end to duplicity that simplifies the usage by managing settings for each backup job in profiles. It supports executing multiple commands in a batch mode to enable single line cron entries and allows the user to use pre/post backup scripts. All duplicity backends are supported. The previous name of duply was ftplicity.
To fix this problem, we can install more using the command below.
sudo apt-get -y install duply
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install duply.
sudo apt -y install duply
Or if you have aptitude installed you can use the following command.
sudo aptitude install duply
Summary
In this tutorial we learn how to fix duply command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.