How To Install qtiocompressor on CentOS 8

In this tutorial we learn how to install qtiocompressor on CentOS 8. qtiocompressor is QIODevice that compresses data streams

Introduction

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

What is qtiocompressor

The class works on top of a QIODevice subclass, compressing data before it is written and decompressing it when it is read. Since QtIOCompressor works on streams, it does not have to see the entire data set before compressing or decompressing it. This can reduce the memory requirements when working on large data sets.

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

Install qtiocompressor on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install qtiocompressor using yum by running the following command:

sudo yum -y install qtiocompressor

Install qtiocompressor on CentOS 8 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 qtiocompressor using dnf by running the following command:

sudo dnf -y install qtiocompressor

How To Uninstall qtiocompressor on CentOS 8

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

sudo dnf remove qtiocompressor

References

Summary

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