How To Install zfstream on Fedora 34
Introduction
In this tutorial we learn how to install zfstream
on Fedora 34.
What is zfstream
zfstream is a small C++ library which provides an abstraction API for reading and writing compressed and non-compressed files using the same API. It supports libz and libbz2 compression schemes. The library is trivial to use and provides client applications with a unified interface for reading and writing files without having to know whether they are compressed or not. zfstream 20041202 32.fc34 x86_64 21 k zfstream-20041202-32.fc34.src.rpm fedora Library for reading and writing compressed and non-compressed files http LGPLv2+ zfstream is a small C++ library which provides an abstraction API for reading and writing compressed and non-compressed files using the same API. It supports libz and libbz2 compression schemes. The library is trivial to use and provides client applications with a unified interface for reading and writing files without having to know whether they are compressed or not.
We can use yum
or dnf
to install zfstream
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install zfstream.
Install zfstream 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 zfstream
using dnf
by running the following command:
sudo dnf -y install zfstream
Install zfstream 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 zfstream
using yum
by running the following command:
sudo yum -y install zfstream
How To Uninstall zfstream on Fedora 34
To uninstall only the zfstream
package we can use the following command:
sudo dnf remove zfstream
zfstream Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/56
/usr/lib/.build-id/56/aff16696ef47c6d58d7e6ec5a14ddfd4712a49
/usr/lib/libzfstream.so.0
/usr/lib/libzfstream.so.0.0.0
/usr/lib/.build-id
/usr/lib/.build-id/6d
/usr/lib/.build-id/6d/219bd52286bd705cb1c5deab5631f6e6a58ffd
/usr/lib64/libzfstream.so.0
/usr/lib64/libzfstream.so.0.0.0
References
- [zfstream website](http://www.wanderinghorse.net/computing/zfstream/ http://www.wanderinghorse.net/computing/zfstream/)
Summary
In this tutorial we learn how to install zfstream
on Fedora 34 using yum and dnf.