How to Install and Uninstall libevent.i686 Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: October 05,2024

1. Install "libevent.i686" package

This guide covers the steps necessary to install libevent.i686 on Red Hat Enterprise Linux 9 (RHEL 9)

$ sudo dnf update $ sudo dnf install libevent.i686

2. Uninstall "libevent.i686" package

Please follow the step by step instructions below to uninstall libevent.i686 on Red Hat Enterprise Linux 9 (RHEL 9):

$ sudo dnf remove libevent.i686 $ sudo dnf autoremove

3. Information about the libevent.i686 package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 0:07:49 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : libevent
Version : 2.1.12
Release : 6.el9
Architecture : i686
Size : 285 k
Source : libevent-2.1.12-6.el9.src.rpm
Repository : ubi-9-baseos-rpms
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.