secrecy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
secrecy: command not found
or when using sudo you get the following error message
sudo: secrecy: command not found
Solutions to secrecy: command not found
How To Fix secrecy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu secrecy is provided by secrecy package.
secrecy is:
libsecrecy is a header only C++ library implementing an encrypted file format based on GCM (Galois Counter Mode) and AES128 or AES256.
The libsecrecy distribution comes with a command line tool called secrecy. This tool has subcommands to manage libsecrecy encryption keys, encrypt, and decrypt files encrypted with the libsecrecy.
To fix this problem, we can install more using the command below.
sudo apt-get -y install secrecy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install secrecy.
sudo apt -y install secrecy
Or if you have aptitude installed you can use the following command.
sudo aptitude install secrecy
Summary
In this tutorial we learn how to fix secrecy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.