icheck command not found

In this troubleshooting guide we learn how to fix icheck command not found error message

Introduction

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

icheck: command not found

or when using sudo you get the following error message

sudo: icheck: command not found

Solutions to icheck: command not found

How To Fix icheck: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu icheck is provided by icheck package.

icheck is:

A tool for statically checking C interfaces for API and ABI changes. All changes to type declarations that can cause ABI changes should be detected, along with most API changes.

icheck is intended for use with libraries, as a method of preventing ABI drift.

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

sudo apt-get -y install icheck

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

You can also use apt command to install icheck.

sudo apt -y install icheck

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

sudo aptitude install icheck

Summary

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