How To Install quassel on CentOS 7
Introduction
In this tutorial we learn how to install quassel on CentOS 7.
What is quassel
Quassel IRC is a modern, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core – much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical
We can use yum or dnf to install quassel on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install quassel.
Install quassel on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install quassel using yum by running the following command:
sudo yum -y install quassel
Install quassel 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 quassel using dnf by running the following command:
sudo dnf -y install quassel
How To Uninstall quassel on CentOS 7
To uninstall only the quassel package we can use the following command:
sudo dnf remove quassel
References
Summary
In this tutorial we learn how to install quassel on CentOS 7 using yum and dnf.