How To Install algol68g on Kali Linux
Introduction
In this tutorial we learn how to install algol68g on Kali Linux.
What is algol68g
algol68g is:
Algol 68 is a secure, expression-oriented programming language with which you elegantly code algorithms without having to bother too much about irrelevant technical details and limitations inherent to many other languages.
Algol 68 Genie offers for example: ? many runtime checks facilitating debugging and improving the ? reliability of your programs, native support for arbitrary precision ? arithmetic including complex numbers, syntactic constructions to ? support linear algebra, a gdb-style debugger and a pretty-printer to ? beautify source code, optional linkage to GNU plotutils, the GNU ? scientific library or PostgreSQL, extensions as UNIX pipes, regular ? expression matching, and web page content fetching.
There are three methods to install algol68g 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 algol68g Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install algol68g using apt-get by running the following command:
sudo apt-get -y install algol68gInstall algol68g Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install algol68g using apt by running the following command:
sudo apt -y install algol68gInstall algol68g 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 algol68g using aptitude by running the following command:
sudo aptitude -y install algol68gHow To Uninstall algol68g on Kali Linux
To uninstall only the algol68g package we can use the following command:
sudo apt-get remove algol68gUninstall algol68g And Its Dependencies
To uninstall algol68g and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove algol68gRemove algol68g Configurations and Data
To remove algol68g configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge algol68gRemove algol68g configuration, data, and all of its dependencies
We can use the following command to remove algol68g configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge algol68gDependencies
algol68g have the following dependencies:
References
Summary
In this tutorial we learn how to install algol68g package on Kali Linux using different package management tools: apt, apt-get and aptitude.