dynamite command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dynamite: command not found
or when using sudo you get the following error message
sudo: dynamite: command not found
Solutions to dynamite: command not found
How To Fix dynamite: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dynamite 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 dynamite command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.