sscg command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sscg: command not found
or when using sudo you get the following error message
sudo: sscg: command not found
Solutions to sscg: command not found
How To Fix sscg: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sscg is provided by sscg package.
sscg is:
sscg is a utility to aid in the creation of more secure “self-signed” certificates. The certificates created by this tool are generated in a way so as to create a CA certificate that can be safely imported into a client machine to trust the service certificate without needing to set up a full PKI environment and without exposing the machine to a risk of false signatures from the service certificate.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sscg
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sscg.
sudo apt -y install sscg
Or if you have aptitude installed you can use the following command.
sudo aptitude install sscg
Summary
In this tutorial we learn how to fix sscg command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.