dlt-parser command not found

In this troubleshooting guide we learn how to fix dlt-parser command not found error message

Introduction

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

dlt-parser: command not found

or when using sudo you get the following error message

sudo: dlt-parser: command not found

Solutions to dlt-parser: command not found

How To Fix dlt-parser: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dlt-parser is provided by dlt-viewer package.

dlt-viewer is:

The Diagnostic Log and Trace Viewer is an application that can send and receive control messages to the DLT daemon, e.g., to set individual log levels of applications and contexts or get the list of applications and contexts registered in the DLT daemon.

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

sudo apt-get -y install dlt-viewer

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

You can also use apt command to install dlt-viewer.

sudo apt -y install dlt-viewer

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

sudo aptitude install dlt-viewer

Summary

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