How To Install libabigail on Rocky Linux 8
Introduction
In this tutorial we learn how to install libabigail
on Rocky Linux 8.
What is libabigail
The libabigail package comprises seven command line utilities abidiff, kmidiff, abipkgdiff, abicompat, abidw, and abilint. The abidiff command line tool compares the ABI of two ELF shared libraries and emits meaningful textual reports about changes impacting exported functions, variables and their types. Simarly, the kmidiff compares the kernel module interface of two Linux kernels. abipkgdiff compares the ABIs of ELF binaries contained in two packages. abicompat checks if a subsequent version of a shared library is still compatible with an application that is linked against it. abidw emits an XML representation of the ABI of a given ELF shared library. abilint checks that a given XML representation of the ABI of a shared library is correct. Install libabigail if you need to compare the ABI of ELF shared libraries.
We can use yum
or dnf
to install libabigail
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libabigail.
Install libabigail on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libabigail
using dnf
by running the following command:
sudo dnf -y install libabigail
Install libabigail on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libabigail
using yum
by running the following command:
sudo yum -y install libabigail
How To Uninstall libabigail on Rocky Linux 8
To uninstall only the libabigail
package we can use the following command:
sudo dnf remove libabigail
libabigail Package Contents on Rocky Linux 8
/usr/bin/abicompat
/usr/bin/abidiff
/usr/bin/abidw
/usr/bin/abilint
/usr/bin/abipkgdiff
/usr/bin/kmidiff
/usr/lib/.build-id
/usr/lib/.build-id/1e
/usr/lib/.build-id/1e/a7d38baae0e7e95b69db15edefcfa5a80d13a6
/usr/lib/.build-id/24
/usr/lib/.build-id/24/f8b1ac3aaa1ca33a538c000fdfb690ad276290
/usr/lib/.build-id/58
/usr/lib/.build-id/58/946f0916614f25d18b2386c3db2c7357b2c044
/usr/lib/.build-id/84
/usr/lib/.build-id/84/5f45298b1629e13d6f0710f065a5175ea27618
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/ba436b51df27fe8b52cb39d86f3dc385fed9af
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/0788e73bfd506f4fccf155fbb41ae8ca3ced99
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/7223f876b789335c8610aa38b30b7c016ee6e4
/usr/lib64/libabigail.so.0
/usr/lib64/libabigail.so.0.0.0
/usr/lib64/libabigail/default.abignore
/usr/share/doc/libabigail
/usr/share/doc/libabigail/AUTHORS
/usr/share/doc/libabigail/ChangeLog
/usr/share/doc/libabigail/README
/usr/share/info/abigail.info.gz
/usr/share/licenses/libabigail
/usr/share/licenses/libabigail/COPYING
/usr/share/licenses/libabigail/COPYING-GPLV3
/usr/share/licenses/libabigail/COPYING-LGPLV3
/usr/share/man/man1/abicompat.1.gz
/usr/share/man/man1/abidiff.1.gz
/usr/share/man/man1/abidw.1.gz
/usr/share/man/man1/abilint.1.gz
/usr/share/man/man1/abipkgdiff.1.gz
/usr/share/man/man7/libabigail.7.gz
References
Summary
In this tutorial we learn how to install libabigail
on Rocky Linux 8 using yum and dnf.