How To Install libverto.x86_64 on Amazon Linux 2

In this tutorial we learn how to install libverto.x86_64 in Amazon Linux 2. libverto.x86_64 is Main loop abstraction library

Introduction

In this tutorial we learn how to install libverto.x86_64 on Amazon Linux 2.

What is libverto.x86_64

libverto provides a way for libraries to expose asynchronous interfaces without having to choose a particular event loop, offloading this decision to the end application which consumes the library. If you are packaging an application, not library, based on libverto, you should depend either on a specific implementation module or you can depend on the virtual provides ’libverto-module-base’. This will ensure that you have at least one module installed that provides io, timeout and signal functionality. Currently glib is the only module that does not provide these three because it lacks signal. However, glib will support signal in the future.

We can use yum to install libverto.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install libverto.x86_64.

Install libverto.x86_64 on Amazon Linux 2 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install libverto.x86_64 using yum by running the following command:

sudo yum -y install libverto.x86_64

How To Uninstall libverto.x86_64 on Amazon Linux 2

To uninstall only the libverto.x86_64 package we can use the following command:

sudo yum remove libverto.x86_64

libverto.x86_64 Package Contents on Amazon Linux 2

/usr/lib64/libverto.so.1
/usr/lib64/libverto.so.1.0.0
/usr/share/doc/libverto-0.2.5
/usr/share/doc/libverto-0.2.5/AUTHORS
/usr/share/doc/libverto-0.2.5/COPYING
/usr/share/doc/libverto-0.2.5/ChangeLog
/usr/share/doc/libverto-0.2.5/NEWS
/usr/share/doc/libverto-0.2.5/README

References

Summary

In this tutorial we learn how to install libverto.x86_64 on Amazon Linux 2 using yum.