keyringer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
keyringer: command not found
or when using sudo you get the following error message
sudo: keyringer: command not found
Solutions to keyringer: command not found
How To Fix keyringer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu keyringer is provided by keyringer package.
keyringer is:
Keyringer lets you manage and share secrets using GnuPG and Git in a distributed fashion. It has custom commands to encrypt, decrypt and recrypt secrets as well as create key pairs and supports encryption to multiple recipients and groups of different recipients to ensure the same repository can be shared with a workgroup but allowing to keep some secrets available just to subsets of that group.
OpenSSL is needed to generate X.509 certificates and keys and xdg-utils are needed to open and edit encrypted secrets according to their file types.
To fix this problem, we can install more using the command below.
sudo apt-get -y install keyringer
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install keyringer.
sudo apt -y install keyringer
Or if you have aptitude installed you can use the following command.
sudo aptitude install keyringer
Summary
In this tutorial we learn how to fix keyringer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.