klcc command not found

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

Introduction

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

klcc: command not found

or when using sudo you get the following error message

sudo: klcc: command not found

Solutions to klcc: command not found

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

In Ubuntu klcc is provided by libklibc-dev package.

libklibc-dev is:

This package contains the set of kernel headers that were required to build klibc and the utilities that ship with it. This may or may not be a complete enough set to build other programs that link against klibc. If in doubt, use real kernel headers instead.

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

sudo apt-get -y install libklibc-dev

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

You can also use apt command to install libklibc-dev.

sudo apt -y install libklibc-dev

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

sudo aptitude install libklibc-dev

Summary

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