pkiconsole command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pkiconsole: command not found
or when using sudo you get the following error message
sudo: pkiconsole: command not found
Solutions to pkiconsole: command not found
How To Fix pkiconsole: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pkiconsole is provided by pki-console package.
pki-console is:
Certificate System (CS) is an enterprise software system designed to manage enterprise Public Key Infrastructure (PKI) deployments.
The PKI Console is a java application used to administer CS.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pki-console
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pki-console.
sudo apt -y install pki-console
Or if you have aptitude installed you can use the following command.
sudo aptitude install pki-console
Summary
In this tutorial we learn how to fix pkiconsole command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.