evcd2vcd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
evcd2vcd: command not found
or when using sudo you get the following error message
sudo: evcd2vcd: command not found
Solutions to evcd2vcd: command not found
How To Fix evcd2vcd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu evcd2vcd is provided by gtkwave package.
gtkwave is:
gtkwave is a viewer for VCD (Value Change Dump) files which are usually created by digital circuit simulators. (These files have no connection to video CDs!)
To fix this problem, we can install more using the command below.
sudo apt-get -y install gtkwave
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gtkwave.
sudo apt -y install gtkwave
Or if you have aptitude installed you can use the following command.
sudo aptitude install gtkwave
Summary
In this tutorial we learn how to fix evcd2vcd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.