How To Install ruby-ruby2-keywords on Kali Linux

In this tutorial we learn how to install ruby-ruby2-keywords on Kali Linux. ruby-ruby2-keywords is source-level compatibility library between ruby2.7 and ruby3

Introduction

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

What is ruby-ruby2-keywords

ruby-ruby2-keywords is:

This package provides an empty Module#ruby2_keywords method for ruby2.7, used to achieve source-level compatibility between ruby2.7 and ruby3. On ruby3, it does nothing.

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

sudo apt-get -y install ruby-ruby2-keywords

Install ruby-ruby2-keywords Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ruby-ruby2-keywords

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

sudo aptitude -y install ruby-ruby2-keywords

How To Uninstall ruby-ruby2-keywords on Kali Linux

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

sudo apt-get remove ruby-ruby2-keywords

Uninstall ruby-ruby2-keywords And Its Dependencies

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

sudo apt-get -y autoremove ruby-ruby2-keywords

Remove ruby-ruby2-keywords Configurations and Data

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

sudo apt-get -y purge ruby-ruby2-keywords

Remove ruby-ruby2-keywords configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ruby-ruby2-keywords

Dependencies

ruby-ruby2-keywords have the following dependencies:

References

Summary

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