How To Install libghc-snap-server-prof on Kali Linux
Introduction
In this tutorial we learn how to install libghc-snap-server-prof on Kali Linux.
What is libghc-snap-server-prof
libghc-snap-server-prof is:
Snap is a simple and fast web development framework and server written in Haskell. For more information or to download the latest version, you can visit the Snap project website at http://snapframework.com/.
The Snap HTTP server is a high performance, epoll-enabled, iteratee-based web server library written in Haskell. Together with the @snap-core@ library upon which it depends, it provides a clean and efficient Haskell programming interface to the HTTP protocol.
Higher-level facilities for building web applications (like user/session management, component interfaces, data modeling, etc.) are planned but not yet implemented, so this release will mostly be of interest for those who:
o need a fast and minimal HTTP API at roughly the same level of abstraction as Java servlets, or
o are interested in contributing to the Snap Framework project.
This package contains the libraries compiled with profiling enabled.
There are three methods to install libghc-snap-server-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-snap-server-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-snap-server-prof using apt-get by running the following command:
sudo apt-get -y install libghc-snap-server-profInstall libghc-snap-server-prof Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libghc-snap-server-prof using apt by running the following command:
sudo apt -y install libghc-snap-server-profInstall libghc-snap-server-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-snap-server-prof using aptitude by running the following command:
sudo aptitude -y install libghc-snap-server-profHow To Uninstall libghc-snap-server-prof on Kali Linux
To uninstall only the libghc-snap-server-prof package we can use the following command:
sudo apt-get remove libghc-snap-server-profUninstall libghc-snap-server-prof And Its Dependencies
To uninstall libghc-snap-server-prof and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libghc-snap-server-profRemove libghc-snap-server-prof Configurations and Data
To remove libghc-snap-server-prof configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libghc-snap-server-profRemove libghc-snap-server-prof configuration, data, and all of its dependencies
We can use the following command to remove libghc-snap-server-prof configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-snap-server-profDependencies
libghc-snap-server-prof have the following dependencies:
- libghc-snap-server-dev
- libghc-attoparsec-prof-0.13.2.4-b0216
- libghc-base-prof-4.13.0.0-2f220
- libghc-blaze-builder-prof-0.4.1.0-1625c
- libghc-bytestring-prof-0.10.10.1-c40ee
- libghc-case-insensitive-prof-1.2.1.0-677af
- libghc-clock-prof-0.8-b1f3c
- libghc-containers-prof-0.6.2.1-ab1cf
- libghc-filepath-prof-1.4.2.1-103b6
- libghc-io-streams-prof-1.5.1.0-44489
- libghc-io-streams-haproxy-prof-1.0.1.0-87000
- libghc-lifted-base-prof-0.2.3.12-b160e
- libghc-mtl-prof-2.2.2-7208c
- libghc-network-prof-3.1.1.1-464ab
- libghc-old-locale-prof-1.0.0.7-93114
- libghc-snap-core-prof-1.0.4.2-c7311
- libghc-text-prof-1.2.4.0-a7a6e
- libghc-time-prof-1.9.3-1ee94
- libghc-unix-prof-2.7.2.2-bb33f
- libghc-unix-compat-prof-0.5.2-0cbb9
- libghc-vector-prof-0.12.1.2-29734
References
Summary
In this tutorial we learn how to install libghc-snap-server-prof package on Kali Linux using different package management tools: apt, apt-get and aptitude.