latrace command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
latrace: command not found
or when using sudo you get the following error message
sudo: latrace: command not found
Solutions to latrace: command not found
How To Fix latrace: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu latrace is provided by latrace package.
latrace is:
latrace (similar to ltrace) displays dynamic library calls of a program using the LD_AUDIT feature of newer glibc versions. It is also capable to measure and display various statistics of dynamic calls. If a config file is provided, latrace will display function arguments with detailed output for structures.
To fix this problem, we can install more using the command below.
sudo apt-get -y install latrace
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install latrace.
sudo apt -y install latrace
Or if you have aptitude installed you can use the following command.
sudo aptitude install latrace
Summary
In this tutorial we learn how to fix latrace command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.