zipcmp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zipcmp: command not found
or when using sudo you get the following error message
sudo: zipcmp: command not found
Solutions to zipcmp: command not found
How To Fix zipcmp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zipcmp is provided by zipcmp package.
zipcmp is:
zipcmp compares two zip archives and checks if they contain the same files, comparing their names, uncompressed sizes, and CRCs. File order and compressed size differences are ignored.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zipcmp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zipcmp.
sudo apt -y install zipcmp
Or if you have aptitude installed you can use the following command.
sudo aptitude install zipcmp
Summary
In this tutorial we learn how to fix zipcmp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.