dh_acc command not found

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

Introduction

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

dh_acc: command not found

or when using sudo you get the following error message

sudo: dh_acc: command not found

Solutions to dh_acc: command not found

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

In Ubuntu dh_acc is provided by dh-acc package.

dh-acc is:

dh-acc is an addon to facilitate generating ABI compatibility reports by comparing known ABI dumps with newly build ABI at Debian package build time. Thus providing monitoring and early detection of ABI breaks in shared libraries.

This package provides dh sequence addon and cdbs integration snippet.

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

sudo apt-get -y install dh-acc

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

You can also use apt command to install dh-acc.

sudo apt -y install dh-acc

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

sudo aptitude install dh-acc

Summary

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