crasm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
crasm: command not found
or when using sudo you get the following error message
sudo: crasm: command not found
Solutions to crasm: command not found
How To Fix crasm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu crasm is provided by crasm package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install crasm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install crasm.
sudo apt -y install crasm
Or if you have aptitude installed you can use the following command.
sudo aptitude install crasm
Summary
In this tutorial we learn how to fix crasm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.