How To Install leatherman on CentOS 8

leatherman is Collection of C++ and CMake utility libraries

Introduction

In this tutorial we learn how to install leatherman on CentOS 8.

What is leatherman

Collection of C++ and CMake utility libraries.

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

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

sudo dnf -y install leatherman

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

sudo yum -y install leatherman

How To Uninstall leatherman on CentOS 8

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

sudo dnf remove leatherman

leatherman Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/30
/usr/lib/.build-id/30/27ca0bad5f4b51b2a09b6a27bc75138dbbe03e
/usr/lib/.build-id/30/959be118edfc529cb03aa195d3535e7c947060
/usr/lib/.build-id/45
/usr/lib/.build-id/45/47983ec501f5650dc5b04838661f9384add024
/usr/lib/.build-id/59
/usr/lib/.build-id/59/0582866d8766a08e3403669a8383793941f1b7
/usr/lib/.build-id/6a
/usr/lib/.build-id/6a/fde1f256a5cf6b1ec1846b9537e41e62dcc4dd
/usr/lib/.build-id/7c
/usr/lib/.build-id/7c/a3be18e2f8550b898371315871ac1ef7dcd00d
/usr/lib/.build-id/84
/usr/lib/.build-id/84/d8819f016c03322ee82a9c2972f181c5a19239
/usr/lib/.build-id/a7
/usr/lib/.build-id/a7/33a042fcb0cf49d2aacc9d1ca2b29bce8b1870
/usr/lib/.build-id/fd
/usr/lib/.build-id/fd/875686da34ce2ca011f5ff5bede70b495748de
/usr/lib64/leatherman_curl.so.1.6.1
/usr/lib64/leatherman_dynamic_library.so.1.6.1
/usr/lib64/leatherman_execution.so.1.6.1
/usr/lib64/leatherman_file_util.so.1.6.1
/usr/lib64/leatherman_json_container.so.1.6.1
/usr/lib64/leatherman_locale.so.1.6.1
/usr/lib64/leatherman_logging.so.1.6.1
/usr/lib64/leatherman_ruby.so.1.6.1
/usr/lib64/leatherman_util.so.1.6.1
/usr/share/licenses/leatherman
/usr/share/licenses/leatherman/LICENSE
/usr/share/locale/fr/LC_MESSAGES/leatherman_locale.mo
/usr/share/locale/fr/LC_MESSAGES/leatherman_logging.mo

References

Summary

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