How To Install irclog2html on CentOS 8
Introduction
In this tutorial we learn how to install irclog2html on CentOS 8.
What is irclog2html
irclog2html is a nice IRC log parser and colorizer that will do the most common things necessary to make an IRC log readable in a web browser. It can export to many different HTML formats, and can export MediaWiki pipe-table syntax.
We can use yum or dnf to install irclog2html on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install irclog2html.
Install irclog2html on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install irclog2html using yum by running the following command:
sudo yum -y install irclog2html
Install irclog2html on CentOS 8 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 irclog2html using dnf by running the following command:
sudo dnf -y install irclog2html
How To Uninstall irclog2html on CentOS 8
To uninstall only the irclog2html package we can use the following command:
sudo dnf remove irclog2html
References
Summary
In this tutorial we learn how to install irclog2html on CentOS 8 using yum and dnf.