How To Install qrouter on Kali Linux
Introduction
In this tutorial we learn how to install qrouter on Kali Linux.
What is qrouter
qrouter is:
Qrouter is a tool to generate metal layers and vias to physically connect together a netlist in a VLSI fabrication technology. It is a maze router, otherwise known as an “over-the-cell” router or “sea-of-gates” router. That is, unlike a channel router, it begins with a description of placed standard cells, usually packed together at minimum spacing, and places metal routes over the standard cells.
Qrouter uses the open standard LEF and DEF formats as file input and output. It takes the cell definitions from a LEF file, and analyzes the geometry for each cell to determine contact points and route obstructions. It then reads the cell placement, pin placement, and netlist from a DEF file, performs the detailed route, and writes an annotated DEF file as output.
There are three methods to install qrouter 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 qrouter Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install qrouter using apt-get by running the following command:
sudo apt-get -y install qrouterInstall qrouter Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install qrouter using apt by running the following command:
sudo apt -y install qrouterInstall qrouter 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 updateAfter updating apt database, We can install qrouter using aptitude by running the following command:
sudo aptitude -y install qrouterHow To Uninstall qrouter on Kali Linux
To uninstall only the qrouter package we can use the following command:
sudo apt-get remove qrouterUninstall qrouter And Its Dependencies
To uninstall qrouter and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove qrouterRemove qrouter Configurations and Data
To remove qrouter configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge qrouterRemove qrouter configuration, data, and all of its dependencies
We can use the following command to remove qrouter configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge qrouterDependencies
qrouter have the following dependencies:
References
Summary
In this tutorial we learn how to install qrouter package on Kali Linux using different package management tools: apt, apt-get and aptitude.