hprof-conv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hprof-conv: command not found
or when using sudo you get the following error message
sudo: hprof-conv: command not found
Solutions to hprof-conv: command not found
How To Fix hprof-conv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hprof-conv is provided by hprof-conv package.
hprof-conv is:
The hprof-conv tool converts the HPROF file that is generated by the Android SDK tools to a standard format so you can view the file in a profiling tool of your choice.
To fix this problem, we can install more using the command below.
sudo apt-get -y install hprof-conv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install hprof-conv.
sudo apt -y install hprof-conv
Or if you have aptitude installed you can use the following command.
sudo aptitude install hprof-conv
Summary
In this tutorial we learn how to fix hprof-conv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.