How To Install telepathy-haze on CentOS 7
Introduction
In this tutorial we learn how to install telepathy-haze on CentOS 7.
What is telepathy-haze
telepathy-haze is a connection manager built around libpurple, the core of Pidgin (formerly Gaim), as a Summer of Code project under the Pidgin umbrella. Ultimately, any protocol supported by libpurple will be supported by telepathy-haze; for now, XMPP, MSN and AIM are known to work acceptably, and others will probably work too.
We can use yum or dnf to install telepathy-haze on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install telepathy-haze.
Install telepathy-haze on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install telepathy-haze using yum by running the following command:
sudo yum -y install telepathy-haze
Install telepathy-haze 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 telepathy-haze using dnf by running the following command:
sudo dnf -y install telepathy-haze
How To Uninstall telepathy-haze on CentOS 7
To uninstall only the telepathy-haze package we can use the following command:
sudo dnf remove telepathy-haze
References
Summary
In this tutorial we learn how to install telepathy-haze on CentOS 7 using yum and dnf.