How To Install libgnome-keyring on CentOS 7

In this tutorial we learn how to install libgnome-keyring on CentOS 7. libgnome-keyring is Framework for managing passwords and other secrets

Introduction

In this tutorial we learn how to install libgnome-keyring on CentOS 7.

What is libgnome-keyring

gnome-keyring is a program that keep password and other secrets for users. The library libgnome-keyring is used by applications to integrate with the gnome-keyring system. gnome-keyring is a program that keep password and other secrets for users. The library libgnome-keyring is used by applications to integrate with the gnome-keyring system.

We can use yum or dnf to install libgnome-keyring on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install libgnome-keyring.

Install libgnome-keyring on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install libgnome-keyring using yum by running the following command:

sudo yum -y install libgnome-keyring

Install libgnome-keyring 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 libgnome-keyring using dnf by running the following command:

sudo dnf -y install libgnome-keyring

How To Uninstall libgnome-keyring on CentOS 7

To uninstall only the libgnome-keyring package we can use the following command:

sudo dnf remove libgnome-keyring

References

Summary

In this tutorial we learn how to install libgnome-keyring on CentOS 7 using yum and dnf.