toacme command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
toacme: command not found
or when using sudo you get the following error message
sudo: toacme: command not found
Solutions to toacme: command not found
How To Fix toacme: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu toacme is provided by acme package.
acme is:
This is a cross assembler that can produce code for the following processors: 6502, 6510 (including illegal opcodes), 65c02 and 65816. ACME supports the standard assembler stuff like global/local/anonymous labels, offset assembly, conditional assembly and looping assembly. It can include other source files as well as binaries while assembling. Calculations can be done in integer or float mode. Oh, and it is fast.
To fix this problem, we can install more using the command below.
sudo apt-get -y install acme
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install acme.
sudo apt -y install acme
Or if you have aptitude installed you can use the following command.
sudo aptitude install acme
Summary
In this tutorial we learn how to fix toacme command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.