gnusim8085 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gnusim8085: command not found
or when using sudo you get the following error message
sudo: gnusim8085: command not found
Solutions to gnusim8085: command not found
How To Fix gnusim8085: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gnusim8085 is provided by gnusim8085 package.
gnusim8085 is:
GNUSim8085 is a graphical simulator, assembler and debugger for the Intel 8085 microprocessor. The application has following features.
- A simple editor component with syntax highlighting.
- A keypad to input assembly language instructions with appropriate arguments.
- Easy view of register contents.
- Easy view of flag contents.
- Decimal <–> Hexadecimal converter.
- View of stack, memory and I/O contents.
- Support for breakpoints for program debugging.
- Stepwise program execution.
- One click conversion of assembly program to opcode listing.
- Printing support.
- UI translated in various languages.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gnusim8085
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gnusim8085.
sudo apt -y install gnusim8085
Or if you have aptitude installed you can use the following command.
sudo aptitude install gnusim8085
Summary
In this tutorial we learn how to fix gnusim8085 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.