Introduction
In this tutorial we learn how to install sblim-cmpi-devel
on CentOS 8.
What is sblim-cmpi-devel
This packages provides the C and C++ CMPI header files needed by provider developers and can be used standalone. If used for C++ provider development it is also necessary to have tog-pegasus-devel installed. sblim-cmpi-devel 2.0.3 15.el8 x86_64 60 k sblim-cmpi-devel-2.0.3-15.el8.src.rpm powertools SBLIM CMPI Provider Development Support http EPL This packages provides the C and C++ CMPI header files needed by provider developers and can be used standalone. If used for C++ provider development it is also necessary to have tog-pegasus-devel installed.
We can use yum
or dnf
to install sblim-cmpi-devel
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install sblim-cmpi-devel.
Install sblim-cmpi-devel 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 sblim-cmpi-devel
using dnf
by running the following command:
sudo dnf -y install sblim-cmpi-devel
Install sblim-cmpi-devel 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 sblim-cmpi-devel
using yum
by running the following command:
sudo yum -y install sblim-cmpi-devel
How To Uninstall sblim-cmpi-devel on CentOS 8
To uninstall only the sblim-cmpi-devel
package we can use the following command:
sudo dnf remove sblim-cmpi-devel
sblim-cmpi-devel Package Contents on CentOS 8
/usr/include/cmpi
/usr/include/cmpi/CmpiArgs.h
/usr/include/cmpi/CmpiArray.h
/usr/include/cmpi/CmpiAssociationMI.h
/usr/include/cmpi/CmpiBaseMI.h
/usr/include/cmpi/CmpiBooleanData.h
/usr/include/cmpi/CmpiBroker.h
/usr/include/cmpi/CmpiCharData.h
/usr/include/cmpi/CmpiContext.h
/usr/include/cmpi/CmpiData.h
/usr/include/cmpi/CmpiDateTime.h
/usr/include/cmpi/CmpiEnumeration.h
/usr/include/cmpi/CmpiIndicationMI.h
/usr/include/cmpi/CmpiInstance.h
/usr/include/cmpi/CmpiInstanceMI.h
/usr/include/cmpi/CmpiMethodMI.h
/usr/include/cmpi/CmpiObject.h
/usr/include/cmpi/CmpiObjectPath.h
/usr/include/cmpi/CmpiPropertyMI.h
/usr/include/cmpi/CmpiProviderBase.h
/usr/include/cmpi/CmpiResult.h
/usr/include/cmpi/CmpiSelectExp.h
/usr/include/cmpi/CmpiStatus.h
/usr/include/cmpi/CmpiString.h
/usr/include/cmpi/Linkage.h
/usr/include/cmpi/cmpidt.h
/usr/include/cmpi/cmpift.h
/usr/include/cmpi/cmpimacs.h
/usr/include/cmpi/cmpios.h
/usr/include/cmpi/cmpipl.h
/usr/lib/rpm/macros.d/macros.sblim-cmpi-devel
/usr/share/doc/sblim-cmpi-devel
/usr/share/doc/sblim-cmpi-devel/AUTHORS
/usr/share/doc/sblim-cmpi-devel/COPYING
/usr/share/doc/sblim-cmpi-devel/README
References
- [sblim-cmpi-devel website](http://sblim.wiki.sourceforge.net/
http://sblim.wiki.sourceforge.net/)
Summary
In this tutorial we learn how to install sblim-cmpi-devel
on CentOS 8 using yum and dnf.