How To Install fpm2 on CentOS 7
Introduction
In this tutorial we learn how to install fpm2
on CentOS 7.
What is fpm2
Figaro’s Password Manager 2 is a program that allows you to securely store the passwords using GTK2 interface. Features include - Passwords are encrypted with the AES-256 algorithm. - Copy passwords or usernames to the clipboard/primary selection. - If the password is for a web site, FPM2 can keep track of the URLs of your login screens and can automatically launch your browser. In this capacity, FPM2 acts as a kind of bookmark manager. - Combine all three features to a web login screen, copy your username to the clipboard and your password to the primary selection, all with a single button click. - FPM2 also has a password generator that can choose passwords for you. It allows you to determine how long the password should be, and what types of characters (lower case, upper case, numbers and symbols) should be used. You can even have it avoid ambiguous characters such as a capital O or the number zero. - Auto-minimise and/or auto-locking passwords database after configurable time to the tray icon.
We can use yum
or dnf
to install fpm2
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install fpm2.
Install fpm2 on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install fpm2
using yum
by running the following command:
sudo yum -y install fpm2
Install fpm2 on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install fpm2
using dnf
by running the following command:
sudo dnf -y install fpm2
How To Uninstall fpm2 on CentOS 7
To uninstall only the fpm2
package we can use the following command:
sudo dnf remove fpm2
References
Summary
In this tutorial we learn how to install fpm2
on CentOS 7 using yum
and dnf
.