How To Install redhat-lsb-cxx on CentOS 7

In this tutorial we learn how to install redhat-lsb-cxx on CentOS 7. redhat-lsb-cxx is LSB CXX module support

Introduction

In this tutorial we learn how to install redhat-lsb-cxx on CentOS 7.

What is redhat-lsb-cxx

The Linux Standard Base (LSB) CXX module supports the core interfaces by providing system interfaces, libraries, and a runtime environment for applications built using the C++ programming language. These interfaces provide low-level support for the core constructs of the language, and implement the standard base C++ libraries. The Linux Standard Base (LSB) CXX module supports the core interfaces by providing system interfaces, libraries, and a runtime environment for applications built using the C++ programming language. These interfaces provide low-level support for the core constructs of the language, and implement the standard base C++ libraries.

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

Install redhat-lsb-cxx on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install redhat-lsb-cxx using yum by running the following command:

sudo yum -y install redhat-lsb-cxx

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

sudo dnf -y install redhat-lsb-cxx

How To Uninstall redhat-lsb-cxx on CentOS 7

To uninstall only the redhat-lsb-cxx package we can use the following command:

sudo dnf remove redhat-lsb-cxx

References

Summary

In this tutorial we learn how to install redhat-lsb-cxx on CentOS 7 using yum and dnf.