ebzip command not found

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

Introduction

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

ebzip: command not found

or when using sudo you get the following error message

sudo: ebzip: command not found

Solutions to ebzip: command not found

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

In Ubuntu ebzip is provided by eb-utils package.

eb-utils is:

EB Library is a C library for accessing CD-ROM books.

EB Library supports to access CD-ROM books of EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING formats. CD-ROM books of those formats are popular in Japan. Since CD-ROM books themseves are stands on the ISO 9660 format, you can mount the discs by the same way as other ISO 9660 discs.

This package provides utility commands of EB Library.

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

sudo apt-get -y install eb-utils

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

You can also use apt command to install eb-utils.

sudo apt -y install eb-utils

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

sudo aptitude install eb-utils

Summary

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