How To Install libghc-acid-state-prof on Kali Linux
Introduction
In this tutorial we learn how to install libghc-acid-state-prof on Kali Linux.
What is libghc-acid-state-prof
libghc-acid-state-prof is:
AcidState is a Haskell library to store serializable Haskell structures, guaranteeing that transactions support the ACID semantic. That is, they must be atomic (a transaction must be completely saved or completely rolled back), consistent (after each transaction the state of the database must be valid), isolated (two parallel transaction must not interfere with each other) and durable (a successful transaction must be reliably stored to a persistent memory).
This library supports both storing data on the local disk and via a network server.
This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell. It obsoletes the package haskell-happstack-state.
There are three methods to install libghc-acid-state-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-acid-state-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-acid-state-prof using apt-get by running the following command:
sudo apt-get -y install libghc-acid-state-profInstall libghc-acid-state-prof Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libghc-acid-state-prof using apt by running the following command:
sudo apt -y install libghc-acid-state-profInstall libghc-acid-state-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-acid-state-prof using aptitude by running the following command:
sudo aptitude -y install libghc-acid-state-profHow To Uninstall libghc-acid-state-prof on Kali Linux
To uninstall only the libghc-acid-state-prof package we can use the following command:
sudo apt-get remove libghc-acid-state-profUninstall libghc-acid-state-prof And Its Dependencies
To uninstall libghc-acid-state-prof and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libghc-acid-state-profRemove libghc-acid-state-prof Configurations and Data
To remove libghc-acid-state-prof configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libghc-acid-state-profRemove libghc-acid-state-prof configuration, data, and all of its dependencies
We can use the following command to remove libghc-acid-state-prof configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-acid-state-profDependencies
libghc-acid-state-prof have the following dependencies:
- libghc-acid-state-dev
- libghc-array-prof-0.5.4.0-ddbb2
- libghc-base-prof-4.13.0.0-2f220
- libghc-bytestring-prof-0.10.10.1-c40ee
- libghc-cereal-prof-0.5.8.1-61932
- libghc-containers-prof-0.6.2.1-ab1cf
- libghc-directory-prof-1.3.6.0-49fdf
- libghc-filelock-prof-0.1.1.5-f35f1
- libghc-filepath-prof-1.4.2.1-103b6
- libghc-mtl-prof-2.2.2-7208c
- libghc-network-prof-3.1.1.1-464ab
- libghc-network-bsd-prof-2.8.1.0-5a202
- libghc-safecopy-prof-0.10.3-34d76
- libghc-stm-prof-2.5.0.0-28cfe
- libghc-template-haskell-prof-2.15.0.0-80f0d
- libghc-th-expand-syns-prof-0.4.6.0-81c3f
- libghc-unix-prof-2.7.2.2-bb33f
References
Summary
In this tutorial we learn how to install libghc-acid-state-prof package on Kali Linux using different package management tools: apt, apt-get and aptitude.