objdump86 command not found

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

Introduction

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

objdump86: command not found

or when using sudo you get the following error message

sudo: objdump86: command not found

Solutions to objdump86: command not found

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

In Ubuntu objdump86 is provided by bin86 package.

bin86 is:

This is the as86 and ld86 distribution written by Bruce Evans. It’s a complete 8086 assembler and loader which can make 32-bit code for the 386+ processors.

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

sudo apt-get -y install bin86

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

You can also use apt command to install bin86.

sudo apt -y install bin86

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

sudo aptitude install bin86

Summary

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