impass command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
impass: command not found
or when using sudo you get the following error message
sudo: impass: command not found
Solutions to impass: command not found
How To Fix impass: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu impass is provided by impass package.
impass is:
Impass is a secure password manager that relies on your OpenPGP key for security and is designed to integrate in a minimal fashion into any X11 window manager.
Passwords and context strings are stored in a single OpenPGP-encrypted and signed file (meaning entry contexts are not exposed to the filesystem). Along with a simple command-line interface, there is a streamlined GUI meant for X11 window manager integration. When invoked, the GUI produces a prompt to search stored contexts. New entries can also easily be created. Passwords are securely retrieved without displaying on the screen. Multiple retrieval methods are available, including auto-typing them directly into an X11 window (default), or inserting them into the X11 clipboard.
To fix this problem, we can install more using the command below.
sudo apt-get -y install impass
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install impass.
sudo apt -y install impass
Or if you have aptitude installed you can use the following command.
sudo aptitude install impass
Summary
In this tutorial we learn how to fix impass command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.