ZydisInfo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ZydisInfo: command not found
or when using sudo you get the following error message
sudo: ZydisInfo: command not found
Solutions to ZydisInfo: command not found
How To Fix ZydisInfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ZydisInfo 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 ZydisInfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.