How To Install gabedit on Kali Linux
Introduction
In this tutorial we learn how to install gabedit on Kali Linux.
What is gabedit
gabedit is:
Gabedit is a graphical user interface to computational chemistry packages like:
- MPQC
- GAMESS-US
- Gaussian
- Molcas
- Molpro
- Q-Chem
These Ab Initio software packages might run locally or on a remote server (supporting FTP, RSH and SSH). Gabedit can display a variety of calculation results including most major molecular file formats. The advanced “Molecule Builder” allows one to rapidly sketch in molecules and examine them in 3D. Graphics can further be exported to various formats, including animations.
There are three methods to install gabedit 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 gabedit Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install gabedit using apt-get by running the following command:
sudo apt-get -y install gabeditInstall gabedit Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install gabedit using apt by running the following command:
sudo apt -y install gabeditInstall gabedit 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 gabedit using aptitude by running the following command:
sudo aptitude -y install gabeditHow To Uninstall gabedit on Kali Linux
To uninstall only the gabedit package we can use the following command:
sudo apt-get remove gabeditUninstall gabedit And Its Dependencies
To uninstall gabedit and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gabeditRemove gabedit Configurations and Data
To remove gabedit configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gabeditRemove gabedit configuration, data, and all of its dependencies
We can use the following command to remove gabedit configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gabeditDependencies
gabedit have the following dependencies:
- openbabel
- libc6
- libcairo2
- libgdk-pixbuf2.0-0
- libgl1
- libgl2ps1.4
- libglib2.0-0
- libglu1-mesa
- libgomp1
- libgtk2.0-0
- libgtkglext1
- libpango-1.0-0
- libpangocairo-1.0-0
- libpangoft2-1.0-0
References
Summary
In this tutorial we learn how to install gabedit package on Kali Linux using different package management tools: apt, apt-get and aptitude.