How To Install d-feet on CentOS 7

In this tutorial we learn how to install d-feet on CentOS 7. d-feet is A powerful D-Bus Debugger

Introduction

In this tutorial we learn how to install d-feet on CentOS 7.

What is d-feet

D-Feet is an easy to use D-Bus debugger. D-Bus is an RPC library used on the Desktop. D-Feet can be used to inspect D-Bus objects of running programs and invoke methods on those objects.

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

Install d-feet on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install d-feet

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

sudo dnf -y install d-feet

How To Uninstall d-feet on CentOS 7

To uninstall only the d-feet package we can use the following command:

sudo dnf remove d-feet

References

Summary

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