How To Install libx86emu on CentOS 7

In this tutorial we learn how to install libx86emu on CentOS 7. libx86emu is x86 emulation library

Introduction

In this tutorial we learn how to install libx86emu on CentOS 7.

What is libx86emu

Small x86 emulation library with focus of easy usage and extended execution logging functions. The library features an API to create emulation objects for x86 architecture.

We can use yum or dnf to install libx86emu on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install libx86emu.

Install libx86emu on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install libx86emu using yum by running the following command:

sudo yum -y install libx86emu

Install libx86emu on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install libx86emu using dnf by running the following command:

sudo dnf -y install libx86emu

How To Uninstall libx86emu on CentOS 7

To uninstall only the libx86emu package we can use the following command:

sudo dnf remove libx86emu

References

Summary

In this tutorial we learn how to install libx86emu on CentOS 7 using yum and dnf.