How To Install crasm on Kali Linux
Introduction
In this tutorial we learn how to install crasm on Kali Linux.
What is crasm
crasm is:
Assemble a microprocessor program and produce output file in Intel HEX or Motorola S Code from source for 6800/6801/6803/6502/65C02/Z80 processors. A program listing and a symbol table are also produced on the standard output.
There are three methods to install crasm 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 crasm Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install crasm using apt-get by running the following command:
sudo apt-get -y install crasmInstall crasm Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install crasm using apt by running the following command:
sudo apt -y install crasmInstall crasm 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 crasm using aptitude by running the following command:
sudo aptitude -y install crasmHow To Uninstall crasm on Kali Linux
To uninstall only the crasm package we can use the following command:
sudo apt-get remove crasmUninstall crasm And Its Dependencies
To uninstall crasm and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove crasmRemove crasm Configurations and Data
To remove crasm configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge crasmRemove crasm configuration, data, and all of its dependencies
We can use the following command to remove crasm configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge crasmDependencies
crasm have the following dependencies:
References
Summary
In this tutorial we learn how to install crasm package on Kali Linux using different package management tools: apt, apt-get and aptitude.