d52 command not found
In this troubleshooting guide we learn how to fix d52 command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
d52: command not found
or when using sudo you get the following error message
sudo: d52: command not found
Solutions to d52: command not found
How To Fix d52: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu d52 is provided by d52 package.
d52 is:
Disassembler for microcontroller code which supports various targets.
This package contains:
- d52: a disassembler for 8052 code,
- d48: a disassembler for 8048/8041 code,
- dz80: a disassembler for Z80/8080/8085 code.
To fix this problem, we can install more using the command below.
sudo apt-get -y install d52
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install d52.
sudo apt -y install d52
Or if you have aptitude installed you can use the following command.
sudo aptitude install d52
Summary
In this tutorial we learn how to fix d52 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.