How to Install and Uninstall lz4-java.x86_64 Package on AlmaLinux 8

Last updated: May 17,2024

1. Install "lz4-java.x86_64" package

In this section, we are going to explain the necessary steps to install lz4-java.x86_64 on AlmaLinux 8

$ sudo dnf update $ sudo dnf install lz4-java.x86_64

2. Uninstall "lz4-java.x86_64" package

This is a short guide on how to uninstall lz4-java.x86_64 on AlmaLinux 8:

$ sudo dnf remove lz4-java.x86_64 $ sudo dnf autoremove

3. Information about the lz4-java.x86_64 package on AlmaLinux 8

Last metadata expiration check: 1:25:40 ago on Mon Sep 5 03:22:42 2022.
Available Packages
Name : lz4-java
Version : 1.7.1
Release : 14.module_el8.5.0+2589+0ec1386d
Architecture : x86_64
Size : 105 k
Source : lz4-java-1.7.1-14.module_el8.5.0+2589+0ec1386d.src.rpm
Repository : appstream
Summary : LZ4 compression for Java
URL : https://github.com/lz4/lz4-java
License : ASL 2.0 and (BSD and GPLv2+)
Description : LZ4 compression for Java, based on Yann Collet's work.
: This library provides access to two compression methods
: that both generate a valid LZ4 stream:
:
: * fast scan (LZ4):
: ° low memory footprint (~ 16 KB),
: ° very fast (fast scan with skipping heuristics in case the
: input looks incompressible),
: ° reasonable compression ratio (depending on the
: redundancy of the input).
: * high compression (LZ4 HC):
: ° medium memory footprint (~ 256 KB),
: ° rather slow (~ 10 times slower than LZ4),
: ° good compression ratio (depending on the size and
: the redundancy of the input).
:
: The streams produced by those 2 compression algorithms use the
: same compression format, are very fast to decompress and can be
: decompressed by the same decompressor instance.