drmips command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
drmips: command not found
or when using sudo you get the following error message
sudo: drmips: command not found
Solutions to drmips: command not found
How To Fix drmips: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu drmips is provided by drmips package.
drmips is:
DrMIPS is a graphical simulator of the MIPS processor to support computer architecture teaching and learning. It is intuitive, versatile and configurable.
The simulator is available not only for personal computers but also for Android devices, especially tablets.
DrMIPS was created under the Master’s dissertation entitled ‘Tool to Support Computer Architecture Teaching and Learning’ at the Faculty of Engineering of the University of Porto, in Portugal.
This package installs the PC version of the simulator.
To fix this problem, we can install more using the command below.
sudo apt-get -y install drmips
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install drmips.
sudo apt -y install drmips
Or if you have aptitude installed you can use the following command.
sudo aptitude install drmips
Summary
In this tutorial we learn how to fix drmips command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.