How To Install zip on AlmaLinux 8
Introduction
In this tutorial we learn how to install zip on AlmaLinux 8.
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 AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install zip.
Install zip on AlmaLinux 8 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 AlmaLinux 8 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 AlmaLinux 8
To uninstall only the zip package we can use the following command:
sudo dnf remove zip
References
Summary
In this tutorial we learn how to install zip on AlmaLinux 8 using yum and dnf.