eztrace_indent_fortran command not found

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

Introduction

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

eztrace_indent_fortran: command not found

or when using sudo you get the following error message

sudo: eztrace_indent_fortran: command not found

Solutions to eztrace_indent_fortran: command not found

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

In Ubuntu eztrace_indent_fortran is provided by eztrace package.

eztrace is:

EZTrace is a tool that aims at generating automatically execution traces from HPC (High Performance Computing) programs. It generates execution trace files that can be interpreted by visualization tools such as ViTE. It uses LD_PRELOAD and dlsym() to intercept calls to the usual HPC primitives, to be observed.

This package contains the tools.

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

sudo apt-get -y install eztrace

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

You can also use apt command to install eztrace.

sudo apt -y install eztrace

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

sudo aptitude install eztrace

Summary

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