fauhdlc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fauhdlc: command not found
or when using sudo you get the following error message
sudo: fauhdlc: command not found
Solutions to fauhdlc: command not found
How To Fix fauhdlc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fauhdlc is provided by fauhdlc package.
fauhdlc is:
Compiles a subset of VHDL 2000 to an intermediate language. The result can be simulated with an interpreter.
FAUhdlc is still in a very early experimental state, where many VHDL constructs are not yet properly supported.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fauhdlc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fauhdlc.
sudo apt -y install fauhdlc
Or if you have aptitude installed you can use the following command.
sudo aptitude install fauhdlc
Summary
In this tutorial we learn how to fix fauhdlc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.