intel2gas command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
intel2gas: command not found
or when using sudo you get the following error message
sudo: intel2gas: command not found
Solutions to intel2gas: command not found
How To Fix intel2gas: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu intel2gas is provided by intel2gas package.
intel2gas is:
Intel2GAS is a converter that will convert assembler source files written for NASM to files that can be assembled using the GNU Assembler (GAS), on the i386 platform. It provides support for basic MMX instructions as well.
To fix this problem, we can install more using the command below.
sudo apt-get -y install intel2gas
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install intel2gas.
sudo apt -y install intel2gas
Or if you have aptitude installed you can use the following command.
sudo aptitude install intel2gas
Summary
In this tutorial we learn how to fix intel2gas command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.