ZydisDisasm command not found

In this troubleshooting guide we learn how to fix ZydisDisasm command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ZydisDisasm: command not found

or when using sudo you get the following error message

sudo: ZydisDisasm: command not found

Solutions to ZydisDisasm: command not found

How To Fix ZydisDisasm: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ZydisDisasm is provided by zydis-tools package.

zydis-tools is:

Zydis is a fast x86/x86-64 disassembler library. It supports all x86 and AMD64 instructions and many vendor extensions, doesn’t perform dynamic memory allocations, is thread safe by design and has no third party dependency - not even libc.

This package contains the command line tools.

To fix this problem, we can install more using the command below.

sudo apt-get -y install zydis-tools

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install zydis-tools.

sudo apt -y install zydis-tools

Or if you have aptitude installed you can use the following command.

sudo aptitude install zydis-tools

Summary

In this tutorial we learn how to fix ZydisDisasm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.