How to Install and Uninstall libevent.i686 Package on Amazon Linux 2

Last updated: September 28,2024

1. Install "libevent.i686" package

This tutorial shows how to install libevent.i686 on Amazon Linux 2

$ sudo yum makecache $ sudo yum install libevent.i686

2. Uninstall "libevent.i686" package

Here is a brief guide to show you how to uninstall libevent.i686 on Amazon Linux 2:

$ sudo yum remove libevent.i686 $ sudo yum autoremove

3. Information about the libevent.i686 package on Amazon Linux 2

Loaded plugins: ovl, priorities
Available Packages
Name : libevent
Arch : i686
Version : 2.0.21
Release : 4.amzn2.0.3
Size : 226 k
Repo : amzn2-core/2/x86_64
Summary : Abstract asynchronous event notification library
URL : http://sourceforge.net/projects/levent/
License : BSD
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.