fxt_print command not found

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

Introduction

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

fxt_print: command not found

or when using sudo you get the following error message

sudo: fxt_print: command not found

Solutions to fxt_print: command not found

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

In Ubuntu fxt_print is provided by fxt-tools package.

fxt-tools is:

FxT is a library and associated tools that can be used to analyze the performance of multithreaded programs which can potentially use a hybrid thread scheduler (i.e. a user-level scheduler on top of a kernel-level one). The Marcel thread library can take full profit from this library.

FxT is based on the offline analysis of traces (sequence of events recorded at run time).

This package contains tools.

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

sudo apt-get -y install fxt-tools

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

You can also use apt command to install fxt-tools.

sudo apt -y install fxt-tools

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

sudo aptitude install fxt-tools

Summary

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