adplugdb command not found

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

Introduction

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

adplugdb: command not found

or when using sudo you get the following error message

sudo: adplugdb: command not found

Solutions to adplugdb: command not found

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

In Ubuntu adplugdb is provided by adplug-utils package.

adplug-utils is:

AdPlug is a free, cross-platform, hardware independent AdLib sound player library, mainly written in C++ and released under the LGPL. AdPlug plays sound data, originally created for the AdLib (OPL2) and Sound Blaster (Dual OPL2/OPL3) audio boards, directly from its original format on top of an emulator or by using the real hardware. No OPL chip is required for playback.

This package contains additional utilities.

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

sudo apt-get -y install adplug-utils

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

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

sudo apt -y install adplug-utils

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

sudo aptitude install adplug-utils

Summary

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