gnomint command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gnomint: command not found
or when using sudo you get the following error message
sudo: gnomint: command not found
Solutions to gnomint: command not found
How To Fix gnomint: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gnomint is provided by gnomint package.
gnomint is:
gnoMint is a tool for easily creating and managing certification authorities. It provides fancy visualization of all the pieces of information that pertain to a CA, such as X.509 certificates, CSRs, and CRLs.
gnoMint is currently capable of managing a CA that emits certificates that are able to authenticate people or machines in VPNs (IPSec or other protocols), secure HTTP communications with SSL/TLS, authenticate and cipher HTTP communications through Web-client certificates, and sign or crypt email messages.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gnomint
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gnomint.
sudo apt -y install gnomint
Or if you have aptitude installed you can use the following command.
sudo aptitude install gnomint
Summary
In this tutorial we learn how to fix gnomint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.