heaptrack_gui command not found

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

Introduction

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

heaptrack_gui: command not found

or when using sudo you get the following error message

sudo: heaptrack_gui: command not found

Solutions to heaptrack_gui: command not found

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

In Ubuntu heaptrack_gui is provided by heaptrack-gui package.

heaptrack-gui is:

Heap memory usage profiler. It uses LD_PRELOAD to track all calls to the core memory allocation functions and logs these occurrences. Additionally, backtraces are obtained and logged. It can also generate a historigram of allocation sizes over the number of calls. Heaptrack measures the following:

  • Heap memory consumption (like Massif).
  • Number of calls to allocation functions (like callgrind).
  • Total amount of memory allocated, ignoring deallocations.
  • Leaked memory (like memcheck).

Heaptrack is notable for it’s ability to attach to running processes, for consuming substantially less memory than Valgrind, and for not reducing an application’s interactivity as much as Valgrind does. Heaptrack is useful for debugging memory leaks and memory ballooning.

The package contains the GUI for data analysis.

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

sudo apt-get -y install heaptrack-gui

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

You can also use apt command to install heaptrack-gui.

sudo apt -y install heaptrack-gui

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

sudo aptitude install heaptrack-gui

Summary

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