How To Install ruby-riemann-client on Kali Linux
Introduction
In this tutorial we learn how to install ruby-riemann-client
on Kali Linux.
What is ruby-riemann-client
ruby-riemann-client is:
This package is a Ruby client for the Riemann distributed event system. Riemann aggregates events from your servers and applications with a powerful stream processing language.
There are three methods to install ruby-riemann-client
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 ruby-riemann-client Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install ruby-riemann-client
using apt-get
by running the following command:
sudo apt-get -y install ruby-riemann-client
Install ruby-riemann-client Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install ruby-riemann-client
using apt
by running the following command:
sudo apt -y install ruby-riemann-client
Install ruby-riemann-client 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 ruby-riemann-client
using aptitude
by running the following command:
sudo aptitude -y install ruby-riemann-client
How To Uninstall ruby-riemann-client on Kali Linux
To uninstall only the ruby-riemann-client
package we can use the following command:
sudo apt-get remove ruby-riemann-client
Uninstall ruby-riemann-client And Its Dependencies
To uninstall ruby-riemann-client
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ruby-riemann-client
Remove ruby-riemann-client Configurations and Data
To remove ruby-riemann-client
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ruby-riemann-client
Remove ruby-riemann-client configuration, data, and all of its dependencies
We can use the following command to remove ruby-riemann-client
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ruby-riemann-client
Dependencies
ruby-riemann-client have the following dependencies:
References
Summary
In this tutorial we learn how to install ruby-riemann-client
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.