How To Install eggdrop on AlmaLinux 8
Introduction
In this tutorial we learn how to install eggdrop
on AlmaLinux 8.
What is eggdrop
Eggdrop is the world’s most popular Open Source IRC bot, designed for flexibility and ease of use. It is extendable with Tcl scripts and/or C modules, has support for the big five IRC networks and is able to form botnets, share partylines and userfiles between bots.
We can use yum
or dnf
to install eggdrop
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install eggdrop.
Install eggdrop on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install eggdrop
using dnf
by running the following command:
sudo dnf -y install eggdrop
Install eggdrop on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install eggdrop
using yum
by running the following command:
sudo yum -y install eggdrop
How To Uninstall eggdrop on AlmaLinux 8
To uninstall only the eggdrop
package we can use the following command:
sudo dnf remove eggdrop
References
Summary
In this tutorial we learn how to install eggdrop
on AlmaLinux 8 using yum and dnf.