How To Install quazip on Fedora 34
Introduction
In this tutorial we learn how to install quazip
on Fedora 34.
What is quazip
QuaZIP is a simple C++ wrapper over Gilles Vollant’s ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech’s Qt toolkit. QuaZIP allows you to access files inside ZIP archives using QIODevice API, and - yes! - that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives. quazip 0.7.6 10.fc34 x86_64 93 k quazip-0.7.6-10.fc34.src.rpm fedora Qt/C++ wrapper for the minizip library https GPLv2+ or LGPLv2+ QuaZIP is a simple C++ wrapper over Gilles Vollant’s ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech’s Qt toolkit. QuaZIP allows you to access files inside ZIP archives using QIODevice API, and - yes! - that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives.
We can use yum
or dnf
to install quazip
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install quazip.
Install quazip 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 quazip
using dnf
by running the following command:
sudo dnf -y install quazip
Install quazip 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 quazip
using yum
by running the following command:
sudo yum -y install quazip
How To Uninstall quazip on Fedora 34
To uninstall only the quazip
package we can use the following command:
sudo dnf remove quazip
quazip Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/6536ecff8831cb7086d98dc02015343f667890
/usr/lib64/libquazip.so.1
/usr/lib64/libquazip.so.1.0.0
/usr/share/doc/quazip
/usr/share/doc/quazip/NEWS.txt
/usr/share/doc/quazip/README.md
/usr/share/licenses/quazip
/usr/share/licenses/quazip/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/df
/usr/lib/.build-id/df/1001a7c42aa5bc759da61b6625183e855d8916
/usr/lib/libquazip.so.1
/usr/lib/libquazip.so.1.0.0
/usr/share/doc/quazip
/usr/share/doc/quazip/NEWS.txt
/usr/share/doc/quazip/README.md
/usr/share/licenses/quazip
/usr/share/licenses/quazip/COPYING
References
- [quazip website](https://github.com/stachenov/quazip https://github.com/stachenov/quazip)
Summary
In this tutorial we learn how to install quazip
on Fedora 34 using yum and dnf.