mutrace command not found
In this troubleshooting guide we learn how to fix mutrace command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
mutrace: command not found
or when using sudo you get the following error message
sudo: mutrace: command not found
Solutions to mutrace: command not found
How To Fix mutrace: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mutrace is provided by mutrace package.
mutrace is:
Two tools are included in this package:
mutrace - for profiling lock contention. matrace - for profiling memory allocations in realtime threads.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mutrace
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mutrace.
sudo apt -y install mutrace
Or if you have aptitude installed you can use the following command.
sudo aptitude install mutrace
Summary
In this tutorial we learn how to fix mutrace command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.