ssl-cert-check command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ssl-cert-check: command not found
or when using sudo you get the following error message
sudo: ssl-cert-check: command not found
Solutions to ssl-cert-check: command not found
How To Fix ssl-cert-check: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ssl-cert-check is provided by ssl-cert-check package.
ssl-cert-check is:
ssl-cert-check is a small shell script which checks digital certificate expiration. It can also check local certificate files and network accessible servers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ssl-cert-check
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ssl-cert-check.
sudo apt -y install ssl-cert-check
Or if you have aptitude installed you can use the following command.
sudo aptitude install ssl-cert-check
Summary
In this tutorial we learn how to fix ssl-cert-check command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.