fcml-disasm command not found

In this troubleshooting guide we learn how to fix fcml-disasm command not found error message

Introduction

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

fcml-disasm: command not found

or when using sudo you get the following error message

sudo: fcml-disasm: command not found

Solutions to fcml-disasm: command not found

How To Fix fcml-disasm: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu fcml-disasm is provided by fcml package.

fcml is:

FCML, the Free Code Manipulation Library, is a general-purpose machine code manipulation library for i386 and amd64 architectures. It includes an assembler and disassembler, instruction renderers and parsers, and supports Intel and AT&T (gas) syntax.

It supports most recent instruction set extensions, including MMX, 3D-Now!, SSE including 4.2 and 4A, AVX and AVX2, AES-NI, TBM, BMI1 and BMI2, HLE, ADX, CLMUL, RDRAND, RDSEED, FMA, FMA4, LWP, SVM, XOP, VMX and SMX.

This package contains a simple but useful single-line assembler and disassembler.

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

sudo apt-get -y install fcml

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

You can also use apt command to install fcml.

sudo apt -y install fcml

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

sudo aptitude install fcml

Summary

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