password-gorilla command not found

In this troubleshooting guide we learn how to fix password-gorilla command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

password-gorilla: command not found

or when using sudo you get the following error message

sudo: password-gorilla: command not found

Solutions to password-gorilla: command not found

How To Fix password-gorilla: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu password-gorilla is provided by password-gorilla package.

password-gorilla is:

The Password Gorilla helps you manage your logins. It stores all your user names and passwords, along with login information and other notes, in a securely encrypted file. A single “master password” is used to protect the file. This way, you only need to remember the single master password, instead of the many logins that you use.

If you want to log in to a service or Web site, the Password Gorilla copies your user name and password to the clipboard, so that you can easily paste it into your Web browser or other application. Because the password does not appear on the screen, Password Gorilla is safe to use in the presence of others.

The convenience of Password Gorilla allows you to choose different, non-intuitive passwords for each service. An integrated random password generator can provide one-time passwords, tunable to various services’ policies.

Password Gorilla is a tcl/tk application which can run on Linux and Windows, and the files written are supposed to be compatible between platforms. This is important for collaboration in heterogenous environments.

To fix this problem, we can install more using the command below.

sudo apt-get -y install password-gorilla

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install password-gorilla.

sudo apt -y install password-gorilla

Or if you have aptitude installed you can use the following command.

sudo aptitude install password-gorilla

Summary

In this tutorial we learn how to fix password-gorilla command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.