How To Install libtext-greeking-perl on Kali Linux
Introduction
In this tutorial we learn how to install libtext-greeking-perl
on Kali Linux.
What is libtext-greeking-perl
libtext-greeking-perl is:
Greeking is the use of random letters or marks to show the overall appearance of a printed page without showing the actual text. Greeking is used to make it easy to judge the overall appearance of a document without being distracted by the meaning of the text.
The Text::Greeking module is for quickly generating varying meaningless text from any source to create this illusion of the content in systems.
This module was created to quickly give developers simulated content to fill systems with simulated content. Instead of static Lorem Ipsum text, by using randomly generated text and optionally varying word sources, repetitive and monotonous patterns that do not represent real system usage is avoided.
There are three methods to install libtext-greeking-perl
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 libtext-greeking-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libtext-greeking-perl
using apt-get
by running the following command:
sudo apt-get -y install libtext-greeking-perl
Install libtext-greeking-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libtext-greeking-perl
using apt
by running the following command:
sudo apt -y install libtext-greeking-perl
Install libtext-greeking-perl 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 libtext-greeking-perl
using aptitude
by running the following command:
sudo aptitude -y install libtext-greeking-perl
How To Uninstall libtext-greeking-perl on Kali Linux
To uninstall only the libtext-greeking-perl
package we can use the following command:
sudo apt-get remove libtext-greeking-perl
Uninstall libtext-greeking-perl And Its Dependencies
To uninstall libtext-greeking-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libtext-greeking-perl
Remove libtext-greeking-perl Configurations and Data
To remove libtext-greeking-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libtext-greeking-perl
Remove libtext-greeking-perl configuration, data, and all of its dependencies
We can use the following command to remove libtext-greeking-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtext-greeking-perl
Dependencies
libtext-greeking-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libtext-greeking-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.