dmtracedump command not found

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

Introduction

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

dmtracedump: command not found

or when using sudo you get the following error message

sudo: dmtracedump: command not found

Solutions to dmtracedump: command not found

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

In Ubuntu dmtracedump is provided by dmtracedump package.

dmtracedump is:

dmtracedump generates the call stack data as a tree diagram, where each node represents a method call. It shows call flow (from parent node to child nodes) using arrows.

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

sudo apt-get -y install dmtracedump

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

You can also use apt command to install dmtracedump.

sudo apt -y install dmtracedump

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

sudo aptitude install dmtracedump

Summary

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