proxycheck command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
proxycheck: command not found
or when using sudo you get the following error message
sudo: proxycheck: command not found
Solutions to proxycheck: command not found
How To Fix proxycheck: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu proxycheck is provided by proxycheck package.
proxycheck is:
proxycheck is a simple tool that will work on a reasonable *nix system and may be used to quickly check whenever a given host or set of hosts has open proxy server running
To fix this problem, we can install more using the command below.
sudo apt-get -y install proxycheck
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install proxycheck.
sudo apt -y install proxycheck
Or if you have aptitude installed you can use the following command.
sudo aptitude install proxycheck
Summary
In this tutorial we learn how to fix proxycheck command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.