How To Install libvterm on CentOS 7

In this tutorial we learn how to install libvterm on CentOS 7. libvterm is An abstract library implementation of a VT220/xterm/ECMA-48

Introduction

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

What is libvterm

An abstract C99 library which implements a VT220 or xterm-like terminal emulator. It does not use any particular graphics toolkit or output system. Instead, it invokes callback function pointers that its embedding program should provide it to draw on its behalf.

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

Install libvterm on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install libvterm

Install libvterm 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 libvterm using dnf by running the following command:

sudo dnf -y install libvterm

How To Uninstall libvterm on CentOS 7

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

sudo dnf remove libvterm

References

Summary

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