How To Install inform6-compiler on Kali Linux
Introduction
In this tutorial we learn how to install inform6-compiler on Kali Linux.
What is inform6-compiler
inform6-compiler is:
Inform 6 is an object-oriented language for writing interactive fiction, also known as ??text adventures?? or ??adventure games??.
As an interactive fiction developer, you create Inform 6 source code defining the story. Then compile from source code to a ??story file??. The resulting story files are highly portable, with interpreters available for many different platforms.
The Inform 6 compiler can produce a story file in these formats:
- Z-code, executed by implementations of the Infocom Z-machine.
- Glulx, a modern platform for interactive fiction.
This package installs:
- The Inform 6 compiler program, ??inform6??.
There are three methods to install inform6-compiler 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 inform6-compiler Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install inform6-compiler using apt-get by running the following command:
sudo apt-get -y install inform6-compilerInstall inform6-compiler Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install inform6-compiler using apt by running the following command:
sudo apt -y install inform6-compilerInstall inform6-compiler 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 inform6-compiler using aptitude by running the following command:
sudo aptitude -y install inform6-compilerHow To Uninstall inform6-compiler on Kali Linux
To uninstall only the inform6-compiler package we can use the following command:
sudo apt-get remove inform6-compilerUninstall inform6-compiler And Its Dependencies
To uninstall inform6-compiler and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove inform6-compilerRemove inform6-compiler Configurations and Data
To remove inform6-compiler configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge inform6-compilerRemove inform6-compiler configuration, data, and all of its dependencies
We can use the following command to remove inform6-compiler configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge inform6-compilerDependencies
inform6-compiler have the following dependencies:
References
Summary
In this tutorial we learn how to install inform6-compiler package on Kali Linux using different package management tools: apt, apt-get and aptitude.