ckport command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ckport: command not found
or when using sudo you get the following error message
sudo: ckport: command not found
Solutions to ckport: command not found
How To Fix ckport: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ckport is provided by ckport package.
ckport is:
ckport is a tool to check already compiled binaries and libraries for porting and security problems.
It uses objdump to read the binaries and analyses calls and jumps to functions.
This package is architecture independent and can be used on non-host architecture binaries if an objdump tool for the target architecture is installed.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ckport
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ckport.
sudo apt -y install ckport
Or if you have aptitude installed you can use the following command.
sudo aptitude install ckport
Summary
In this tutorial we learn how to fix ckport command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.