How To Install ml-burg on Kali Linux
Introduction
In this tutorial we learn how to install ml-burg on Kali Linux.
What is ml-burg
ml-burg is:
ml-burg generates a Standard ML program to perform bottom-up rewriting of an input tree. Cost information associated with each rewrite rule is used to derive the minimum rewrite cost for the entire tree. A successful reduction corresponds to rewriting the input tree to a special non-terminal symbol called the “start” non-terminal. Upon successful reduction, facilities are provided to walk the tree emitting semantic actions corresponding to the rules that matched.
Install this package if you want to write a compiler in SML using a burg specification.
There are three methods to install ml-burg 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 ml-burg Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ml-burg using apt-get by running the following command:
sudo apt-get -y install ml-burgInstall ml-burg Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ml-burg using apt by running the following command:
sudo apt -y install ml-burgInstall ml-burg 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 ml-burg using aptitude by running the following command:
sudo aptitude -y install ml-burgHow To Uninstall ml-burg on Kali Linux
To uninstall only the ml-burg package we can use the following command:
sudo apt-get remove ml-burgUninstall ml-burg And Its Dependencies
To uninstall ml-burg and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ml-burgRemove ml-burg Configurations and Data
To remove ml-burg configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ml-burgRemove ml-burg configuration, data, and all of its dependencies
We can use the following command to remove ml-burg configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ml-burgDependencies
ml-burg have the following dependencies:
References
Summary
In this tutorial we learn how to install ml-burg package on Kali Linux using different package management tools: apt, apt-get and aptitude.