id-shr-extract command not found

In this troubleshooting guide we learn how to fix id-shr-extract command not found error message

Introduction

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

id-shr-extract: command not found

or when using sudo you get the following error message

sudo: id-shr-extract: command not found

Solutions to id-shr-extract: command not found

How To Fix id-shr-extract: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu id-shr-extract is provided by dynamite package.

dynamite is:

Dynamite is a tool and library for decompressing data compressed with PKWARE Data Compression Library and it was created from the specification provided by a post in the comp.compression newsgroup.

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

sudo apt-get -y install dynamite

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

You can also use apt command to install dynamite.

sudo apt -y install dynamite

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

sudo aptitude install dynamite

Summary

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