How To Install cl-uffi-tests on Kali Linux

In this tutorial we learn how to install cl-uffi-tests on Kali Linux. cl-uffi-tests is Regression tests for UFFI Common Lisp Library

Introduction

In this tutorial we learn how to install cl-uffi-tests on Kali Linux.

What is cl-uffi-tests

cl-uffi-tests is:

This is a test of regression tests for Debian cl-uffi package. UFFI is a universal foreign function interface for Common Lisp implementations. Besides providing testing for UFFI, the tests serve as an example of UFFI usage.

There are three methods to install cl-uffi-tests 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 cl-uffi-tests Using apt-get

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

sudo apt-get update

After updating apt database, We can install cl-uffi-tests using apt-get by running the following command:

sudo apt-get -y install cl-uffi-tests

Install cl-uffi-tests Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install cl-uffi-tests using apt by running the following command:

sudo apt -y install cl-uffi-tests

Install cl-uffi-tests 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 cl-uffi-tests using aptitude by running the following command:

sudo aptitude -y install cl-uffi-tests

How To Uninstall cl-uffi-tests on Kali Linux

To uninstall only the cl-uffi-tests package we can use the following command:

sudo apt-get remove cl-uffi-tests

Uninstall cl-uffi-tests And Its Dependencies

To uninstall cl-uffi-tests and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove cl-uffi-tests

Remove cl-uffi-tests Configurations and Data

To remove cl-uffi-tests configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge cl-uffi-tests

Remove cl-uffi-tests configuration, data, and all of its dependencies

We can use the following command to remove cl-uffi-tests configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge cl-uffi-tests

Dependencies

cl-uffi-tests have the following dependencies:

References

Summary

In this tutorial we learn how to install cl-uffi-tests package on Kali Linux using different package management tools: apt, apt-get and aptitude.