tracecompass command not found

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

Introduction

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

tracecompass: command not found

or when using sudo you get the following error message

sudo: tracecompass: command not found

Solutions to tracecompass: command not found

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

In Ubuntu tracecompass is provided by eclipse-tracecompass package.

eclipse-tracecompass is:

Eclipse Trace Compass is an open source application to solve performance and reliability issues by reading and analyzing traces and logs of a system. Its goal is to provide views, graphs, metrics, and more to help extract useful information from traces, in a way that is more user-friendly and informative than huge text dumps.

Supports Linux LTTng kernel traces with built-in analyses and views.

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

sudo apt-get -y install eclipse-tracecompass

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

You can also use apt command to install eclipse-tracecompass.

sudo apt -y install eclipse-tracecompass

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

sudo aptitude install eclipse-tracecompass

Summary

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