microtests command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
microtests: command not found
or when using sudo you get the following error message
sudo: microtests: command not found
Solutions to microtests: command not found
How To Fix microtests: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu microtests is provided by oregano package.
oregano is:
Oregano is a GNOME application for schematic capture and printing of electronic circuits. It can simulate the circuits using Gnucap, ng-spice or Berkeley spice.
To fix this problem, we can install more using the command below.
sudo apt-get -y install oregano
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install oregano.
sudo apt -y install oregano
Or if you have aptitude installed you can use the following command.
sudo aptitude install oregano
Summary
In this tutorial we learn how to fix microtests command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.