How To Install libdwarf.i686 on Amazon Linux 2

In this tutorial we learn how to install libdwarf.i686 in Amazon Linux 2. libdwarf.i686 is Library to access the DWARF Debugging file format

Introduction

In this tutorial we learn how to install libdwarf.i686 on Amazon Linux 2.

What is libdwarf.i686

Library to access the DWARF debugging file format which supports source level debugging of a number of procedural languages, such as C, C++, and Fortran. Please see http DWARF specification.

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

Install libdwarf.i686 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 libdwarf.i686 using yum by running the following command:

sudo yum -y install libdwarf.i686

How To Uninstall libdwarf.i686 on Amazon Linux 2

To uninstall only the libdwarf.i686 package we can use the following command:

sudo yum remove libdwarf.i686

libdwarf.i686 Package Contents on Amazon Linux 2

/usr/lib/libdwarf.so.0
/usr/lib/libdwarf.so.0.20130207.0
/usr/share/doc/libdwarf-20130207
/usr/share/doc/libdwarf-20130207/COPYING
/usr/share/doc/libdwarf-20130207/ChangeLog
/usr/share/doc/libdwarf-20130207/LGPL.txt
/usr/share/doc/libdwarf-20130207/LIBDWARFCOPYRIGHT
/usr/share/doc/libdwarf-20130207/README

References

Summary

In this tutorial we learn how to install libdwarf.i686 on Amazon Linux 2 using yum.