How To Install boost-stacktrace on CentOS 8

boost-stacktrace is Run-time component of boost stacktrace library Run-time component of boost stacktrace library

Introduction

In this tutorial we learn how to install boost-stacktrace on CentOS 8.

What is boost-stacktrace

Run-time component of the Boost stacktrace library. boost-stacktrace 1.66.0 10.el8 x86_64 36 k boost-1.66.0-10.el8.src.rpm appstream Run-time component of boost stacktrace library http Boost and MIT and Python Run-time component of the Boost stacktrace library.

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

Install boost-stacktrace on CentOS 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

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

sudo dnf -y install boost-stacktrace

Install boost-stacktrace on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install boost-stacktrace using yum by running the following command:

sudo yum -y install boost-stacktrace

How To Uninstall boost-stacktrace on CentOS 8

To uninstall only the boost-stacktrace package we can use the following command:

sudo dnf remove boost-stacktrace

boost-stacktrace Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/10
/usr/lib/.build-id/10/fac35d2f88992348b48e74cd30f1491728ae13
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/8383b54388faf700d8a06440ffaa954dfd65bf
/usr/lib/.build-id/d0
/usr/lib/.build-id/d0/e52e701c9d9fa579531aa2f6f0dd2a86465fa3
/usr/lib64/libboost_stacktrace_addr2line.so.1.66.0
/usr/lib64/libboost_stacktrace_basic.so.1.66.0
/usr/lib64/libboost_stacktrace_noop.so.1.66.0
/usr/share/licenses/boost-stacktrace
/usr/share/licenses/boost-stacktrace/LICENSE_1_0.txt
/usr/lib/.build-id
/usr/lib/.build-id/35/c9cb792674e678bf2caba22355af22abf05f24
/usr/lib/.build-id/a5
/usr/lib/.build-id/a5/00d928fdac588c525814197f85771567bd9c56
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/396bdafa11d5825fdec9b216b375fe515e4579
/usr/lib/libboost_stacktrace_addr2line.so.1.66.0
/usr/lib/libboost_stacktrace_basic.so.1.66.0
/usr/lib/libboost_stacktrace_noop.so.1.66.0
/usr/share/licenses/boost-stacktrace
/usr/share/licenses/boost-stacktrace/LICENSE_1_0.txt

References

Summary

In this tutorial we learn how to install boost-stacktrace on CentOS 8 using yum and dnf.