How To Install qtiocompressor on Fedora 34
Introduction
In this tutorial we learn how to install qtiocompressor
on Fedora 34.
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. qtiocompressor 2.3.1 24.fc34 x86_64 38 k qtiocompressor-2.3.1-24.fc34.src.rpm fedora QIODevice that compresses data streams http GPLv3 or LGPLv2 with exceptions 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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install qtiocompressor.
Install qtiocompressor 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 qtiocompressor
using dnf
by running the following command:
sudo dnf -y install qtiocompressor
Install qtiocompressor 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 qtiocompressor
using yum
by running the following command:
sudo yum -y install qtiocompressor
How To Uninstall qtiocompressor on Fedora 34
To uninstall only the qtiocompressor
package we can use the following command:
sudo dnf remove qtiocompressor
qtiocompressor Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/0a1be021851aeb2b18099a8a919658c6ae8e9f
/usr/lib64/libQt5Solutions_IOCompressor-2.3.so.1
/usr/lib64/libQt5Solutions_IOCompressor-2.3.so.1.0
/usr/lib64/libQt5Solutions_IOCompressor-2.3.so.1.0.0
/usr/share/doc/qtiocompressor
/usr/share/doc/qtiocompressor/README.TXT
/usr/share/licenses/qtiocompressor
/usr/share/licenses/qtiocompressor/LGPL_EXCEPTION.txt
/usr/share/licenses/qtiocompressor/LICENSE.GPL3
/usr/share/licenses/qtiocompressor/LICENSE.LGPL
/usr/lib/.build-id
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/0b371c114a01f4d85cf1708764896be9643bb0
/usr/lib/libQt5Solutions_IOCompressor-2.3.so.1
/usr/lib/libQt5Solutions_IOCompressor-2.3.so.1.0
/usr/lib/libQt5Solutions_IOCompressor-2.3.so.1.0.0
/usr/share/doc/qtiocompressor
/usr/share/doc/qtiocompressor/README.TXT
/usr/share/licenses/qtiocompressor
/usr/share/licenses/qtiocompressor/LGPL_EXCEPTION.txt
/usr/share/licenses/qtiocompressor/LICENSE.GPL3
/usr/share/licenses/qtiocompressor/LICENSE.LGPL
References
- [qtiocompressor website](http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Utilities/qtiocompressor/ http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Utilities/qtiocompressor/)
Summary
In this tutorial we learn how to install qtiocompressor
on Fedora 34 using yum and dnf.