faucc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
faucc: command not found
or when using sudo you get the following error message
sudo: faucc: command not found
Solutions to faucc: command not found
How To Fix faucc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu faucc is provided by faucc package.
faucc is:
FAUcc is a optimizing C compiler, that can generate Intel code for 16bit/32bit CPUS. It is useful, if you are in need to compile real mode code, like a BIOS.
FAUcc uses the GNU binutils for assembling/linking.
To fix this problem, we can install more using the command below.
sudo apt-get -y install faucc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install faucc.
sudo apt -y install faucc
Or if you have aptitude installed you can use the following command.
sudo aptitude install faucc
Summary
In this tutorial we learn how to fix faucc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.