How To Install deja-dup on Kali Linux
Introduction
In this tutorial we learn how to install deja-dup on Kali Linux.
What is deja-dup
deja-dup is:
D?j? Dup is a simple backup tool. It hides the complexity of backing up the Right Way (encrypted, off-site, and regular) and uses duplicity as the backend.
Features:
- Support for local, remote, or cloud backup locations such as Nextcloud
- Securely encrypts and compresses your data
- Incrementally backs up, letting you restore from any particular backup
- Schedules regular backups
- Integrates well into your GNOME desktop
There are three methods to install deja-dup on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install deja-dup Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install deja-dup using apt-get by running the following command:
sudo apt-get -y install deja-dupInstall deja-dup Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install deja-dup using apt by running the following command:
sudo apt -y install deja-dupInstall deja-dup Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install deja-dup using aptitude by running the following command:
sudo aptitude -y install deja-dupHow To Uninstall deja-dup on Kali Linux
To uninstall only the deja-dup package we can use the following command:
sudo apt-get remove deja-dupUninstall deja-dup And Its Dependencies
To uninstall deja-dup and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove deja-dupRemove deja-dup Configurations and Data
To remove deja-dup configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge deja-dupRemove deja-dup configuration, data, and all of its dependencies
We can use the following command to remove deja-dup configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge deja-dupDependencies
deja-dup have the following dependencies:
- duplicity
- dconf-gsettings-backend
- libatk1.0-0
- libc6
- libgdk-pixbuf-2.0-0
- libglib2.0-0
- libgpg-error0
- libgtk-3-0
- libhandy-1-0
- libjson-glib-1.0-0
- libpackagekit-glib2-18
- libsecret-1-0
- libsoup2.4-1
References
Summary
In this tutorial we learn how to install deja-dup package on Kali Linux using different package management tools: apt, apt-get and aptitude.