How To Install fpm2 on CentOS 8
Introduction
In this tutorial we learn how to install fpm2
on CentOS 8.
What is fpm2
Figaro’s Password Manager 2 is a program that allows you to securely store the passwords using GTK3 interface. Features include - Passwords are encrypted with the AES-256-GCM algorithm. - Copy passwords or user names 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 login screen, copy your user name 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-minimize and/or auto-locking passwords database after configurable time to the tray icon.
We can use yum
or dnf
to install fpm2
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install fpm2.
Install fpm2 on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install fpm2
using dnf
by running the following command:
sudo dnf -y install fpm2
Install fpm2 on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install fpm2
using yum
by running the following command:
sudo yum -y install fpm2
How To Uninstall fpm2 on CentOS 8
To uninstall only the fpm2
package we can use the following command:
sudo dnf remove fpm2
fpm2 Package Contents on CentOS 8
/usr/bin/fpm2
/usr/lib/.build-id
/usr/lib/.build-id/36
/usr/lib/.build-id/36/b9010e75d9afea6ffb2a01c28a955a8acbe3c5
/usr/share/applications/fpm2.desktop
/usr/share/doc/fpm2
/usr/share/doc/fpm2/AUTHORS
/usr/share/doc/fpm2/COPYING
/usr/share/doc/fpm2/ChangeLog
/usr/share/doc/fpm2/NEWS
/usr/share/doc/fpm2/README
/usr/share/doc/fpm2/TODO
/usr/share/icons/hicolor/128x128/apps/fpm2.png
/usr/share/icons/hicolor/48x48/apps/fpm2.png
/usr/share/locale/bg/LC_MESSAGES/fpm2.mo
/usr/share/locale/cs/LC_MESSAGES/fpm2.mo
/usr/share/locale/de/LC_MESSAGES/fpm2.mo
/usr/share/locale/es/LC_MESSAGES/fpm2.mo
/usr/share/locale/eu/LC_MESSAGES/fpm2.mo
/usr/share/locale/fr/LC_MESSAGES/fpm2.mo
/usr/share/locale/he/LC_MESSAGES/fpm2.mo
/usr/share/locale/hu/LC_MESSAGES/fpm2.mo
/usr/share/locale/it/LC_MESSAGES/fpm2.mo
/usr/share/locale/pl/LC_MESSAGES/fpm2.mo
/usr/share/locale/ru/LC_MESSAGES/fpm2.mo
/usr/share/man/man1/fpm2.1.gz
/usr/share/pixmaps/fpm2
/usr/share/pixmaps/fpm2/logo.png
References
Summary
In this tutorial we learn how to install fpm2
on CentOS 8 using yum and dnf.