How To Install libghc-utf8-string-prof on Kali Linux
Introduction
In this tutorial we learn how to install libghc-utf8-string-prof on Kali Linux.
What is libghc-utf8-string-prof
libghc-utf8-string-prof is:
UTF8 layer for Strings. The utf8-string package provides operations for encoding UTF8 strings to Word8 lists and back, and for reading and writing UTF8 without truncation.
This package contains additional GHC profiling libraries which can be used with libghc-utf8-string-dev.
There are three methods to install libghc-utf8-string-prof 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 libghc-utf8-string-prof Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libghc-utf8-string-prof using apt-get by running the following command:
sudo apt-get -y install libghc-utf8-string-profInstall libghc-utf8-string-prof Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libghc-utf8-string-prof using apt by running the following command:
sudo apt -y install libghc-utf8-string-profInstall libghc-utf8-string-prof 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 updateAfter updating apt database, We can install libghc-utf8-string-prof using aptitude by running the following command:
sudo aptitude -y install libghc-utf8-string-profHow To Uninstall libghc-utf8-string-prof on Kali Linux
To uninstall only the libghc-utf8-string-prof package we can use the following command:
sudo apt-get remove libghc-utf8-string-profUninstall libghc-utf8-string-prof And Its Dependencies
To uninstall libghc-utf8-string-prof and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libghc-utf8-string-profRemove libghc-utf8-string-prof Configurations and Data
To remove libghc-utf8-string-prof configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libghc-utf8-string-profRemove libghc-utf8-string-prof configuration, data, and all of its dependencies
We can use the following command to remove libghc-utf8-string-prof configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-utf8-string-profDependencies
libghc-utf8-string-prof have the following dependencies:
References
Summary
In this tutorial we learn how to install libghc-utf8-string-prof package on Kali Linux using different package management tools: apt, apt-get and aptitude.