kickpass command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kickpass: command not found
or when using sudo you get the following error message
sudo: kickpass: command not found
Solutions to kickpass: command not found
How To Fix kickpass: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kickpass is provided by kickpass package.
kickpass is:
It keep each password in a specific safe, protected with modern cryptography. Command line interface is splited into different command.
It has features like:
- One password to rule them all;
- Oone password to find them;
- One password to bring them all
- Integrated password generator;
- Full text metadata with your favorite editor;
- Direct copy to X selection and clipboard;
- Strong encryption: AEAD with chacha20 and poly1305.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kickpass
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kickpass.
sudo apt -y install kickpass
Or if you have aptitude installed you can use the following command.
sudo aptitude install kickpass
Summary
In this tutorial we learn how to fix kickpass command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.