How To Install libcmpiutil on Fedora 34
Introduction
In this tutorial we learn how to install libcmpiutil
on Fedora 34.
What is libcmpiutil
Libcmpiutil is a library of utility functions for CMPI providers. The goal is to reduce the amount of repetitive work done in most CMPI providers by encapsulating common procedures with more “normal” APIs. This extends from operations like getting typed instance properties to standardizing method dispatch and argument checking. libcmpiutil 0.5.7 17.fc34 x86_64 58 k libcmpiutil-0.5.7-17.fc34.src.rpm fedora CMPI Utility Library http LGPLv2+ Libcmpiutil is a library of utility functions for CMPI providers. The goal is to reduce the amount of repetitive work done in most CMPI providers by encapsulating common procedures with more “normal” APIs. This extends from operations like getting typed instance properties to standardizing method dispatch and argument checking.
We can use yum
or dnf
to install libcmpiutil
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libcmpiutil.
Install libcmpiutil on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libcmpiutil
using dnf
by running the following command:
sudo dnf -y install libcmpiutil
Install libcmpiutil on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libcmpiutil
using yum
by running the following command:
sudo yum -y install libcmpiutil
How To Uninstall libcmpiutil on Fedora 34
To uninstall only the libcmpiutil
package we can use the following command:
sudo dnf remove libcmpiutil
libcmpiutil Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/17
/usr/lib/.build-id/17/50eb3365d212b55c7b9deb115e2560f39f70a5
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/991bb2ede6594a96b59be971138e4323c31605
/usr/lib/libcmpiutil.so.0
/usr/lib/libcmpiutil.so.0.5.7
/usr/lib/libcueoparser.so.0
/usr/lib/libcueoparser.so.0.5.7
/usr/share/doc/libcmpiutil
/usr/share/doc/libcmpiutil/README
/usr/share/doc/libcmpiutil/doxygen.conf
/usr/share/doc/libcmpiutil/mainpage
/usr/share/licenses/libcmpiutil
/usr/share/licenses/libcmpiutil/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/66
/usr/lib/.build-id/66/909b204f4f29e51595c7f6d3f87cec63a322e6
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/5ea0f980a794cb4a02d5beb275dd4dc4e713c4
/usr/lib64/libcmpiutil.so.0
/usr/lib64/libcmpiutil.so.0.5.7
/usr/lib64/libcueoparser.so.0
/usr/lib64/libcueoparser.so.0.5.7
/usr/share/doc/libcmpiutil
/usr/share/doc/libcmpiutil/README
/usr/share/doc/libcmpiutil/doxygen.conf
/usr/share/doc/libcmpiutil/mainpage
/usr/share/licenses/libcmpiutil
/usr/share/licenses/libcmpiutil/COPYING
References
- [libcmpiutil website](http://libvirt.org/CIM/ http://libvirt.org/CIM/)
Summary
In this tutorial we learn how to install libcmpiutil
on Fedora 34 using yum and dnf.