How To Install stalin on Kali Linux
Introduction
In this tutorial we learn how to install stalin
on Kali Linux.
What is stalin
stalin is:
stalin is an aggressive self-hosting Scheme compiler, designed to generate resource efficient stand-alone executables with very high computational performance. It is a batch mode compiler like gcc, not an interpreter, and is designed to be used only after your code has stabilized.
It places a few limitations on the content of the source code. For example, you may not LOAD or EVAL new expressions or procedure definitions at runtime, but in exchange, it is able to perform various global analyses which may allow it to transparently map Scheme types to C types and to use native C arithmetic operations on a per-expression basis, whenever such operations are proven safe. Further stalin can often reduce or eliminate run-time type checking and dispatching, and omit garbage collection for data of limited scope or accessibility, while omitting unreachable data altogether.
stalin also has a foreign procedure interface to both Xlib and OpenGL.
There are three methods to install stalin
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 stalin Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install stalin
using apt-get
by running the following command:
sudo apt-get -y install stalin
Install stalin Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install stalin
using apt
by running the following command:
sudo apt -y install stalin
Install stalin 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 stalin
using aptitude
by running the following command:
sudo aptitude -y install stalin
How To Uninstall stalin on Kali Linux
To uninstall only the stalin
package we can use the following command:
sudo apt-get remove stalin
Uninstall stalin And Its Dependencies
To uninstall stalin
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove stalin
Remove stalin Configurations and Data
To remove stalin
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge stalin
Remove stalin configuration, data, and all of its dependencies
We can use the following command to remove stalin
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge stalin
Dependencies
stalin have the following dependencies:
References
Summary
In this tutorial we learn how to install stalin
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.