How To Install clisp-module-bindings-glibc on Ubuntu 18.04
Introduction
In this tutorial we learn how to install clisp-module-bindings-glibc on Ubuntu 18.04.
What is clisp-module-bindings-glibc
clisp-module-bindings-glibc is:
This adds a module to clisp that implements an interface to the glibc library, adding support for a number of low level functions.
There are three methods to install clisp-module-bindings-glibc on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install clisp-module-bindings-glibc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install clisp-module-bindings-glibc using apt-get by running the following command:
sudo apt-get -y install clisp-module-bindings-glibc
Install clisp-module-bindings-glibc Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install clisp-module-bindings-glibc using apt by running the following command:
sudo apt -y install clisp-module-bindings-glibc
Install clisp-module-bindings-glibc Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install clisp-module-bindings-glibc using aptitude by running the following command:
sudo aptitude -y install clisp-module-bindings-glibc
How To Uninstall clisp-module-bindings-glibc on Ubuntu 18.04
To uninstall only the clisp-module-bindings-glibc package we can use the following command:
sudo apt-get remove clisp-module-bindings-glibc
Uninstall clisp-module-bindings-glibc And Its Dependencies
To uninstall clisp-module-bindings-glibc and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove clisp-module-bindings-glibc
Remove clisp-module-bindings-glibc Configurations and Data
To remove clisp-module-bindings-glibc configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge clisp-module-bindings-glibc
Remove clisp-module-bindings-glibc configuration, data, and all of its dependencies
We can use the following command to remove clisp-module-bindings-glibc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge clisp-module-bindings-glibc
References
Summary
In this tutorial we learn how to install clisp-module-bindings-glibc package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.