shishid command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
shishid: command not found
or when using sudo you get the following error message
sudo: shishid: command not found
Solutions to shishid: command not found
How To Fix shishid: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu shishid is provided by shishi-kdc package.
shishi-kdc is:
Shishi is an implementation of the kerberos v5 network authentication system.
This package contain the Shishi server (shishid), which is a Key Distribution Center (KDC).
To fix this problem, we can install more using the command below.
sudo apt-get -y install shishi-kdc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install shishi-kdc.
sudo apt -y install shishi-kdc
Or if you have aptitude installed you can use the following command.
sudo aptitude install shishi-kdc
Summary
In this tutorial we learn how to fix shishid command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.