zipmerge command not found

In this troubleshooting guide we learn how to fix zipmerge command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

zipmerge: command not found

or when using sudo you get the following error message

sudo: zipmerge: command not found

Solutions to zipmerge: command not found

How To Fix zipmerge: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu zipmerge is provided by zipmerge package.

zipmerge is:

zipmerge merges a source zip archives into a target zip archive. By default, files in the source zip archives overwrite existing files of the same name in the target zip archive.

To fix this problem, we can install more using the command below.

sudo apt-get -y install zipmerge

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install zipmerge.

sudo apt -y install zipmerge

Or if you have aptitude installed you can use the following command.

sudo aptitude install zipmerge

Summary

In this tutorial we learn how to fix zipmerge command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.