kyua command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kyua: command not found
or when using sudo you get the following error message
sudo: kyua: command not found
Solutions to kyua: command not found
How To Fix kyua: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kyua is provided by kyua package.
kyua is:
Kyua is a testing framework for infrastructure software. Kyua features an expressive test suite definition language, a safe runtime engine for test programs, and a powerful report generation engine.
Kyua is able to execute test programs written in different languages, with different testing libraries. The Automated Testing Framework (ATF) is the library of choice, but Test Anything Protocol (TAP) compliant programs, and framework-less test programs can also be executed through Kyua.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kyua
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kyua.
sudo apt -y install kyua
Or if you have aptitude installed you can use the following command.
sudo aptitude install kyua
Summary
In this tutorial we learn how to fix kyua command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.