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

Last updated: July 03,2024

1. Install "libevent.x86_64" package

Please follow the guidelines below to install libevent.x86_64 on Amazon Linux 2

$ sudo yum makecache $ sudo yum install libevent.x86_64

2. Uninstall "libevent.x86_64" package

In this section, we are going to explain the necessary steps to uninstall libevent.x86_64 on Amazon Linux 2:

$ sudo yum remove libevent.x86_64 $ sudo yum autoremove

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

Loaded plugins: ovl, priorities
Available Packages
Name : libevent
Arch : x86_64
Version : 2.0.21
Release : 4.amzn2.0.3
Size : 214 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.