How To Install gplcver on Kali Linux

In this tutorial we learn how to install gplcver on Kali Linux. gplcver is Verilog simulator

Introduction

In this tutorial we learn how to install gplcver on Kali Linux.

What is gplcver

gplcver is:

Cver is a full 1995 IEEE P1364 standard Verilog simulator. It also implements some of the 2001 P1364 standard features. All three PLI interfaces (tf_, acc_, and vpi_) are implemented as defined in the IEEE 2001 P1364 LRM.

Homepage: http://www.pragmatic-c.com/gpl-cver

There are three methods to install gplcver on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install gplcver Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install gplcver using apt-get by running the following command:

sudo apt-get -y install gplcver

Install gplcver Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gplcver using apt by running the following command:

sudo apt -y install gplcver

Install gplcver Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install gplcver using aptitude by running the following command:

sudo aptitude -y install gplcver

How To Uninstall gplcver on Kali Linux

To uninstall only the gplcver package we can use the following command:

sudo apt-get remove gplcver

Uninstall gplcver And Its Dependencies

To uninstall gplcver and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove gplcver

Remove gplcver Configurations and Data

To remove gplcver configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge gplcver

Remove gplcver configuration, data, and all of its dependencies

We can use the following command to remove gplcver configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gplcver

Dependencies

gplcver have the following dependencies:

References

Summary

In this tutorial we learn how to install gplcver package on Kali Linux using different package management tools: apt, apt-get and aptitude.