How To Install ruby-whenever on Kali Linux

In this tutorial we learn how to install ruby-whenever on Kali Linux. ruby-whenever is Ruby library to abstract writing and deploying cron jobs

Introduction

In this tutorial we learn how to install ruby-whenever on Kali Linux.

What is ruby-whenever

ruby-whenever is:

whenever provides a clean ruby syntax for writing and deploying cron jobs. It provides commands to install and uninstall cronjobs, so for example an application can install its cronjobs when it starts, and uninstall them when it stops for maintaince.

There are three methods to install ruby-whenever 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-whenever 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-whenever using apt-get by running the following command:

sudo apt-get -y install ruby-whenever

Install ruby-whenever Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ruby-whenever using apt by running the following command:

sudo apt -y install ruby-whenever

Install ruby-whenever 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-whenever using aptitude by running the following command:

sudo aptitude -y install ruby-whenever

How To Uninstall ruby-whenever on Kali Linux

To uninstall only the ruby-whenever package we can use the following command:

sudo apt-get remove ruby-whenever

Uninstall ruby-whenever And Its Dependencies

To uninstall ruby-whenever and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove ruby-whenever

Remove ruby-whenever Configurations and Data

To remove ruby-whenever configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge ruby-whenever

Remove ruby-whenever configuration, data, and all of its dependencies

We can use the following command to remove ruby-whenever configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ruby-whenever

Dependencies

ruby-whenever have the following dependencies:

References

Summary

In this tutorial we learn how to install ruby-whenever package on Kali Linux using different package management tools: apt, apt-get and aptitude.