ndisasm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ndisasm: command not found
or when using sudo you get the following error message
sudo: ndisasm: command not found
Solutions to ndisasm: command not found
How To Fix ndisasm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ndisasm is provided by nasm package.
nasm is:
Netwide Assembler. NASM will currently output flat-form binary files, a.out, COFF and ELF Unix object files, and Microsoft 16-bit DOS and Win32 object files.
Also included is NDISASM, a prototype x86 binary-file disassembler which uses the same instruction table as NASM.
NASM is released under the GNU Lesser General Public License (LGPL).
To fix this problem, we can install more using the command below.
sudo apt-get -y install nasm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nasm.
sudo apt -y install nasm
Or if you have aptitude installed you can use the following command.
sudo aptitude install nasm
Summary
In this tutorial we learn how to fix ndisasm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.