How To Install gausssum on Kali Linux
Introduction
In this tutorial we learn how to install gausssum on Kali Linux.
What is gausssum
gausssum is:
GaussSum parses the output files of ADF, GAMESS, GAMESS-UK, Gaussian, Jaguar and PC GAMESS calculations to extract useful information.
GaussSum uses GNUPlot to display the progress of geometry optimisations, density of states spectrum, UV-VIS spectra, IR spectra, Raman spectra, and electron density difference maps. It can also display all lines containing an arbitrary phrase and more.
There are three methods to install gausssum 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 gausssum Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install gausssum using apt-get by running the following command:
sudo apt-get -y install gausssumInstall gausssum Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install gausssum using apt by running the following command:
sudo apt -y install gausssumInstall gausssum 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 gausssum using aptitude by running the following command:
sudo aptitude -y install gausssumHow To Uninstall gausssum on Kali Linux
To uninstall only the gausssum package we can use the following command:
sudo apt-get remove gausssumUninstall gausssum And Its Dependencies
To uninstall gausssum and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gausssumRemove gausssum Configurations and Data
To remove gausssum configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gausssumRemove gausssum configuration, data, and all of its dependencies
We can use the following command to remove gausssum configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gausssumDependencies
gausssum have the following dependencies:
References
Summary
In this tutorial we learn how to install gausssum package on Kali Linux using different package management tools: apt, apt-get and aptitude.