feature-check command not found

In this troubleshooting guide we learn how to fix feature-check command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

feature-check: command not found

or when using sudo you get the following error message

sudo: feature-check: command not found

Solutions to feature-check: command not found

How To Fix feature-check: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu feature-check is provided by feature-check package.

feature-check is:

The feature-check tool obtains the list of supported features from a program via various methods (e.g. running it with the –features command-line option) and allows other programs to check for the presence and, possibly, versions of specific features.

This package contains the command-line tool for use by any program.

To fix this problem, we can install more using the command below.

sudo apt-get -y install feature-check

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install feature-check.

sudo apt -y install feature-check

Or if you have aptitude installed you can use the following command.

sudo aptitude install feature-check

Summary

In this tutorial we learn how to fix feature-check command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.