How To Install password-gorilla on Ubuntu 20.04

In this tutorial we learn how to install password-gorilla on Ubuntu 20.04. password-gorilla is cross-platform password manager

Introduction

In this tutorial we learn how to install password-gorilla on Ubuntu 20.04.

What is password-gorilla

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.

There are three methods to install password-gorilla on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install password-gorilla Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install password-gorilla using apt-get by running the following command:

sudo apt-get -y install password-gorilla

Install password-gorilla Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install password-gorilla using apt by running the following command:

sudo apt -y install password-gorilla

Install password-gorilla Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install password-gorilla using aptitude by running the following command:

sudo aptitude -y install password-gorilla

How To Uninstall password-gorilla on Ubuntu 20.04

To uninstall only the password-gorilla package we can use the following command:

sudo apt-get remove password-gorilla

Uninstall password-gorilla And Its Dependencies

To uninstall password-gorilla and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove password-gorilla

Remove password-gorilla Configurations and Data

To remove password-gorilla configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge password-gorilla

Remove password-gorilla configuration, data, and all of its dependencies

We can use the following command to remove password-gorilla configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge password-gorilla

References

Summary

In this tutorial we learn how to install password-gorilla package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.