How To Install barman-cli-cloud on Kali Linux
Introduction
In this tutorial we learn how to install barman-cli-cloud
on Kali Linux.
What is barman-cli-cloud
barman-cli-cloud is:
Barman (Backup and Recovery Manager) is an open-source administration tool for disaster recovery of PostgreSQL servers written in Python.
It allows your organization to perform remote backups of multiple servers in business critical environments to reduce risk and help DBAs during the recovery phase.
The barman-cli-cloud package contains cloud client utilities for the integration of Barman in PostgreSQL clusters.
Barman is distributed under GNU GPL 3 and maintained by 2ndQuadrant.
There are three methods to install barman-cli-cloud
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 barman-cli-cloud Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install barman-cli-cloud
using apt-get
by running the following command:
sudo apt-get -y install barman-cli-cloud
Install barman-cli-cloud Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install barman-cli-cloud
using apt
by running the following command:
sudo apt -y install barman-cli-cloud
Install barman-cli-cloud 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 barman-cli-cloud
using aptitude
by running the following command:
sudo aptitude -y install barman-cli-cloud
How To Uninstall barman-cli-cloud on Kali Linux
To uninstall only the barman-cli-cloud
package we can use the following command:
sudo apt-get remove barman-cli-cloud
Uninstall barman-cli-cloud And Its Dependencies
To uninstall barman-cli-cloud
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove barman-cli-cloud
Remove barman-cli-cloud Configurations and Data
To remove barman-cli-cloud
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge barman-cli-cloud
Remove barman-cli-cloud configuration, data, and all of its dependencies
We can use the following command to remove barman-cli-cloud
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge barman-cli-cloud
Dependencies
barman-cli-cloud have the following dependencies:
References
Summary
In this tutorial we learn how to install barman-cli-cloud
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.