How To Install miniz on CentOS 8

miniz is Compression library implementing the zlib and Deflate

Introduction

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

What is miniz

Miniz is a lossless, high performance data compression library in a single source file that implements the zlib (RFC 1950) and Deflate (RFC 1951) compressed data format specification standards. It supports the most commonly used functions exported by the zlib library, but is a completely independent implementation so zlib’s licensing requirements do not apply. It also contains simple to use functions for writing PNG format image files and reading/writing/appending ZIP format archives. Miniz’s compression speed has been tuned to be comparable to zlib’s, and it also has a specialized real-time compressor function designed to compare well against fastlz/minilzo.

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

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

sudo dnf -y install miniz

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

sudo yum -y install miniz

How To Uninstall miniz on CentOS 8

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

sudo dnf remove miniz

miniz Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/26
/usr/lib/.build-id/26/b9ca048b0a6bfaaf2a4f7a4c0cc747516d694a
/usr/lib64/libminiz.so.0.2
/usr/share/doc/miniz
/usr/share/doc/miniz/ChangeLog.md
/usr/share/doc/miniz/readme.md
/usr/share/licenses/miniz
/usr/share/licenses/miniz/LICENSE

References

Summary

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