edb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
edb: command not found
or when using sudo you get the following error message
sudo: edb: command not found
Solutions to edb: command not found
How To Fix edb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu edb is provided by edb-debugger package.
edb-debugger is:
edb is a graphical cross platform x86/x86-64 debugger. It was inspired by Ollydbg, but aims to function on x86 and x86-64 as well as multiple OS’s. Linux is the only officially supported platform at the moment, but FreeBSD, OpenBSD, OSX and Windows ports are underway with varying degrees of functionality.
To fix this problem, we can install more using the command below.
sudo apt-get -y install edb-debugger
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install edb-debugger.
sudo apt -y install edb-debugger
Or if you have aptitude installed you can use the following command.
sudo aptitude install edb-debugger
Summary
In this tutorial we learn how to fix edb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.