How To Install gadmin-rsync on Kali Linux
Introduction
In this tutorial we learn how to install gadmin-rsync
on Kali Linux.
What is gadmin-rsync
gadmin-rsync is:
gadmin-rsync is an easy to use GTK+ frontend for the rsync server.
Feature:
- Multiple backup sets that can be scheduled to run at specific times via cron.
- Each of these backup sets can contain multiple remote or local data backups.
- Backup sets that are started via cron schedules will generate log files for each of the data backups in the backup sets.
- The backup logfiles will have the same names as the individual backup sets.
- Individual backup sets can be run manually and the progress can be viewed in the progress tab.
- Remote backups are fully automatic, differential and encrypted.
- Keys are created for each host, uploaded and then installed on the remote hosts using a combination of ssh-keygen/scp and ssh.
- Makes remote synchronizations scheduleable.
There are three methods to install gadmin-rsync
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 gadmin-rsync Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install gadmin-rsync
using apt-get
by running the following command:
sudo apt-get -y install gadmin-rsync
Install gadmin-rsync Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install gadmin-rsync
using apt
by running the following command:
sudo apt -y install gadmin-rsync
Install gadmin-rsync 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 update
After updating apt database, We can install gadmin-rsync
using aptitude
by running the following command:
sudo aptitude -y install gadmin-rsync
How To Uninstall gadmin-rsync on Kali Linux
To uninstall only the gadmin-rsync
package we can use the following command:
sudo apt-get remove gadmin-rsync
Uninstall gadmin-rsync And Its Dependencies
To uninstall gadmin-rsync
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gadmin-rsync
Remove gadmin-rsync Configurations and Data
To remove gadmin-rsync
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gadmin-rsync
Remove gadmin-rsync configuration, data, and all of its dependencies
We can use the following command to remove gadmin-rsync
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gadmin-rsync
Dependencies
gadmin-rsync have the following dependencies:
References
Summary
In this tutorial we learn how to install gadmin-rsync
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.