z80dasm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
z80dasm: command not found
or when using sudo you get the following error message
sudo: z80dasm: command not found
Solutions to z80dasm: command not found
How To Fix z80dasm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu z80dasm is provided by z80dasm package.
z80dasm is:
The Z80 microprocessor is used in some 1980s home microcomputers, such as the Sinclair ZX80, ZX81, Spectrum, Galaksija and in several newer devices, such as graphical calculators from Texas Instruments and the original GameBoy.
This disassembler is useful for reverse engineering programs and operating systems written for such devices. It produces assembly source code from binary ROM images and tries to guess locations of labels and symbols. Its output can be directly converted back to binary with a Z80 assembler, such as z80asm.
To fix this problem, we can install more using the command below.
sudo apt-get -y install z80dasm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install z80dasm.
sudo apt -y install z80dasm
Or if you have aptitude installed you can use the following command.
sudo aptitude install z80dasm
Summary
In this tutorial we learn how to fix z80dasm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.