How To Install freeze on Fedora 34
Introduction
In this tutorial we learn how to install freeze
on Fedora 34.
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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install freeze.
Install freeze 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 freeze
using dnf
by running the following command:
sudo dnf -y install freeze
Install freeze 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 freeze
using yum
by running the following command:
sudo yum -y install freeze
How To Uninstall freeze on Fedora 34
To uninstall only the freeze
package we can use the following command:
sudo dnf remove freeze
freeze Package Contents on Fedora 34
/usr/bin/fcat
/usr/bin/freeze
/usr/bin/melt
/usr/bin/statist
/usr/bin/unfreeze
/usr/lib/.build-id
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/5a65c231ee08a51ed926e6b7b65064031d5a80
/usr/lib/.build-id/94
/usr/lib/.build-id/94/7984bc12c811c0387c1fab77d7e1f6d1dc79a6
/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 Fedora 34 using yum and dnf.