How To Install libslz on Fedora 36
Introduction
In this tutorial we learn how to install libslz
on Fedora 36.
What is libslz
SLZ is a fast and memory-less stream compressor which produces an output that can be decompressed with zlib or gzip. It does not implement decompression at all, zlib is perfectly fine for this. The purpose is to use SLZ in situations where a zlib-compatible stream is needed and zlib’s resource usage would be too high while the compression ratio is not critical. The typical use case is in HTTP servers and gateways which have to compress many streams in parallel with little CPU resources to assign to this task, and without having to limit the compression ratio due to the memory usage. In such an environment, the server’s memory usage can easily be divided by 10 and the CPU usage by 3.
We can use yum
or dnf
to install libslz
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install libslz.
Install libslz on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libslz
using dnf
by running the following command:
sudo dnf -y install libslz
Install libslz on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libslz
using yum
by running the following command:
sudo yum -y install libslz
How To Uninstall libslz on Fedora 36
To uninstall only the libslz
package we can use the following command:
sudo dnf remove libslz
libslz Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/7b
/usr/lib/.build-id/7b/ee0cdb6541ee26dde892c0bc1e663595881e70
/usr/lib/libslz.so.1
/usr/share/doc/libslz
/usr/share/doc/libslz/README
/usr/share/licenses/libslz
/usr/share/licenses/libslz/LICENSE
References
Summary
In this tutorial we learn how to install libslz
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).
title: “How To Install libslz on Fedora 36” linkTitle: “libslz” type: “docs” description: “In this tutorial we learn how to install libslz in Fedora 36. libslz is StateLess Zip” date: “2022-08-17” lastmod: “2022-08-17” #image: /images/fedora/36/libslz-featured.png
Introduction
In this tutorial we learn how to install libslz
on Fedora 36.
What is libslz
SLZ is a fast and memory-less stream compressor which produces an output that can be decompressed with zlib or gzip. It does not implement decompression at all, zlib is perfectly fine for this. The purpose is to use SLZ in situations where a zlib-compatible stream is needed and zlib’s resource usage would be too high while the compression ratio is not critical. The typical use case is in HTTP servers and gateways which have to compress many streams in parallel with little CPU resources to assign to this task, and without having to limit the compression ratio due to the memory usage. In such an environment, the server’s memory usage can easily be divided by 10 and the CPU usage by 3.
We can use yum
or dnf
to install libslz
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install libslz.
Install libslz on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libslz
using dnf
by running the following command:
sudo dnf -y install libslz
Install libslz on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libslz
using yum
by running the following command:
sudo yum -y install libslz
How To Uninstall libslz on Fedora 36
To uninstall only the libslz
package we can use the following command:
sudo dnf remove libslz
libslz Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/7c
/usr/lib/.build-id/7c/8d48b6bea78b220f9ecd1f6f901f08c32c7f45
/usr/lib64/libslz.so.1
/usr/share/doc/libslz
/usr/share/doc/libslz/README
/usr/share/licenses/libslz
/usr/share/licenses/libslz/LICENSE
References
Summary
In this tutorial we learn how to install libslz
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).