How to Install and Uninstall libevent.i686 Package on CentOS 8 / RHEL 8

Last updated: May 18,2024

1. Install "libevent.i686" package

In this section, we are going to explain the necessary steps to install libevent.i686 on CentOS 8 / RHEL 8

$ sudo dnf update $ sudo dnf install libevent.i686

2. Uninstall "libevent.i686" package

Please follow the guidelines below to uninstall libevent.i686 on CentOS 8 / RHEL 8:

$ sudo dnf remove libevent.i686 $ sudo dnf autoremove

3. Information about the libevent.i686 package on CentOS 8 / RHEL 8

Last metadata expiration check: 1 day, 5:32:43 ago on Sun May 9 13:03:46 2021.
Available Packages
Name : libevent
Version : 2.1.8
Release : 5.el8
Architecture : i686
Size : 272 k
Source : libevent-2.1.8-5.el8.src.rpm
Repository : baseos
Summary : Abstract asynchronous event notification library
URL : http://libevent.org/
License : BSD and ISC
Description : The libevent API provides a mechanism to execute a callback function
: when a specific event occurs on a file descriptor or after a timeout
: has been reached. libevent is meant to replace the asynchronous event
: loop found in event driven network servers. An application just needs
: to call event_dispatch() and can then add or remove events dynamically
: without having to change the event loop.