How To Install freeze on CentOS 8
Introduction
In this tutorial we learn how to install freeze
on CentOS 8.
What is freeze
Freeze is an old file compressor and decompressor that is not in common use anymore, but can be useful if the need ever arises to dearchive files compressed with it.
We can use yum
or dnf
to install freeze
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install freeze.
Install freeze on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install freeze
using dnf
by running the following command:
sudo dnf -y install freeze
Install freeze on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install freeze
using yum
by running the following command:
sudo yum -y install freeze
How To Uninstall freeze on CentOS 8
To uninstall only the freeze
package we can use the following command:
sudo dnf remove freeze
freeze Package Contents on CentOS 8
/usr/bin/fcat
/usr/bin/freeze
/usr/bin/melt
/usr/bin/statist
/usr/bin/unfreeze
/usr/lib/.build-id
/usr/lib/.build-id/a3
/usr/lib/.build-id/a3/be41397bf1d4d225479cd95640b36132333232
/usr/lib/.build-id/ad
/usr/lib/.build-id/ad/fb8e7c0b2f78bba2e6a07bf280121043ea3c52
/usr/share/doc/freeze
/usr/share/doc/freeze/Freeze_license_email.txt
/usr/share/doc/freeze/MANIFEST
/usr/share/doc/freeze/README
/usr/share/man/man1/fcat.1.gz
/usr/share/man/man1/freeze.1.gz
/usr/share/man/man1/melt.1.gz
/usr/share/man/man1/statist.1.gz
/usr/share/man/man1/unfreeze.1.gz
References
Summary
In this tutorial we learn how to install freeze
on CentOS 8 using yum and dnf.