How To Install libghc-snap-core-prof on Kali Linux

In this tutorial we learn how to install libghc-snap-core-prof on Kali Linux. libghc-snap-core-prof is Snap

Introduction

In this tutorial we learn how to install libghc-snap-core-prof on Kali Linux.

What is libghc-snap-core-prof

libghc-snap-core-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/.

This library contains the core definitions and types for the Snap framework, including:

  1. Primitive types and functions for HTTP (requests, responses, cookies, post/query parameters, etc)

  2. Type aliases and helper functions for Iteratee I/O

  3. A monad for programming web handlers called "Snap", inspired by happstack’s (http://happstack.com/index.html), which allows:

o Stateful access to the HTTP request and response objects

o Monadic failure (i.e. MonadPlus/Alternative instances) for declining to handle requests and chaining handlers together

o Early termination of the computation if you know early what you want to return and want to prevent further monadic processing

This package contains the libraries compiled with profiling enabled.

There are three methods to install libghc-snap-core-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-core-prof Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libghc-snap-core-prof using apt-get by running the following command:

sudo apt-get -y install libghc-snap-core-prof

Install libghc-snap-core-prof Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libghc-snap-core-prof using apt by running the following command:

sudo apt -y install libghc-snap-core-prof

Install libghc-snap-core-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 update

After updating apt database, We can install libghc-snap-core-prof using aptitude by running the following command:

sudo aptitude -y install libghc-snap-core-prof

How To Uninstall libghc-snap-core-prof on Kali Linux

To uninstall only the libghc-snap-core-prof package we can use the following command:

sudo apt-get remove libghc-snap-core-prof

Uninstall libghc-snap-core-prof And Its Dependencies

To uninstall libghc-snap-core-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-core-prof

Remove libghc-snap-core-prof Configurations and Data

To remove libghc-snap-core-prof configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libghc-snap-core-prof

Remove libghc-snap-core-prof configuration, data, and all of its dependencies

We can use the following command to remove libghc-snap-core-prof configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libghc-snap-core-prof

Dependencies

libghc-snap-core-prof have the following dependencies:

References

Summary

In this tutorial we learn how to install libghc-snap-core-prof package on Kali Linux using different package management tools: apt, apt-get and aptitude.