How To Install zip on Fedora 36
Introduction
In this tutorial we learn how to install zip
on Fedora 36.
What is zip
The zip program is a compression and file packaging utility. Zip is analogous to a combination of the UNIX tar and compress commands and is compatible with PKZIP (a compression and file packaging utility for MS-DOS systems). Install the zip package if you need to compress files using the zip program.
We can use yum
or dnf
to install zip
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install zip.
Install zip 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 zip
using dnf
by running the following command:
sudo dnf -y install zip
Install zip 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 zip
using yum
by running the following command:
sudo yum -y install zip
How To Uninstall zip on Fedora 36
To uninstall only the zip
package we can use the following command:
sudo dnf remove zip
zip Package Contents on Fedora 36
/usr/bin/zip
/usr/bin/zipcloak
/usr/bin/zipnote
/usr/bin/zipsplit
/usr/lib/.build-id
/usr/lib/.build-id/88
/usr/lib/.build-id/88/b6dc873cc164280e470c5def7eb1bd3b908f7b
/usr/lib/.build-id/9c
/usr/lib/.build-id/9c/a3a7df76f8bed332304c4bfaf14fa5d49fdf51
/usr/lib/.build-id/9e
/usr/lib/.build-id/9e/d5396431ad093083eefcf24974da9693a9bf62
/usr/lib/.build-id/ec
/usr/lib/.build-id/ec/9a641f10041db0451034cf157666d1ed36c5bf
/usr/share/doc/zip
/usr/share/doc/zip/CHANGES
/usr/share/doc/zip/README
/usr/share/doc/zip/README.CR
/usr/share/doc/zip/TODO
/usr/share/doc/zip/WHATSNEW
/usr/share/doc/zip/WHERE
/usr/share/doc/zip/algorith.txt
/usr/share/licenses/zip
/usr/share/licenses/zip/LICENSE
/usr/share/man/man1/zip.1.gz
/usr/share/man/man1/zipcloak.1.gz
/usr/share/man/man1/zipnote.1.gz
/usr/share/man/man1/zipsplit.1.gz
References
Summary
In this tutorial we learn how to install zip
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).