covered command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
covered: command not found
or when using sudo you get the following error message
sudo: covered: command not found
Solutions to covered: command not found
How To Fix covered: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu covered is provided by covered package.
covered is:
Covered is a Verilog code coverage utility that reads in a Verilog design and a generated VCD/LXT dumpfile from that design and generates a coverage file that can be merged with other coverage files or used to create a coverage report. Covered also contains the GUI coverage report utility that reads in a coverage file to allow interactive coverage discovery. Areas of coverage measured by Covered are: line, toggle, memory, combinational logic, FSM state/state-transition and assertion coverage.
To fix this problem, we can install more using the command below.
sudo apt-get -y install covered
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install covered.
sudo apt -y install covered
Or if you have aptitude installed you can use the following command.
sudo aptitude install covered
Summary
In this tutorial we learn how to fix covered command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.