How To Install libzmf on CentOS 8

libzmf is A library for import of Zoner document formats A library for import of Zoner document formats

Introduction

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

What is libzmf

libzmf is library providing ability to interpret and import Zoner document formats into various applications. Currently it only supports Zoner Callisto/Draw v 4-5. libzmf 0.0.2 3.el8 x86_64 89 k libzmf-0.0.2-3.el8.src.rpm appstream A library for import of Zoner document formats http MPLv2.0 libzmf is library providing ability to interpret and import Zoner document formats into various applications. Currently it only supports Zoner Callisto/Draw v 4-5.

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

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

sudo dnf -y install libzmf

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

sudo yum -y install libzmf

How To Uninstall libzmf on CentOS 8

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

sudo dnf remove libzmf

libzmf Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/78
/usr/lib/.build-id/78/f7aba35a9a881f346b78707eebeb90c8f286ea
/usr/lib64/libzmf-0.0.so.0
/usr/lib64/libzmf-0.0.so.0.0.2
/usr/share/doc/libzmf
/usr/share/doc/libzmf/AUTHORS
/usr/share/doc/libzmf/NEWS
/usr/share/licenses/libzmf
/usr/share/licenses/libzmf/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/f7
/usr/lib/.build-id/f7/bf7ad8cdce6275ee3e475e06e5b1fbb87c87c9
/usr/lib/libzmf-0.0.so.0
/usr/lib/libzmf-0.0.so.0.0.2
/usr/share/doc/libzmf
/usr/share/doc/libzmf/AUTHORS
/usr/share/doc/libzmf/NEWS
/usr/share/licenses/libzmf
/usr/share/licenses/libzmf/COPYING

References

Summary

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