How To Install qutemol on Kali Linux
Introduction
In this tutorial we learn how to install qutemol on Kali Linux.
What is qutemol
qutemol is:
QuteMol is an interactive, high quality molecular visualization system. It exploits the current GPU capabilities through OpenGL shaders to offer an array of innovative visual effects. QuteMol visualization techniques are aimed at improving clarity and an easier understanding of the 3D shape and structure of large molecules or complex proteins.
Qutemol uses advanced OpenGL techniques and might not work correctly with all video cards and drivers.
Features QuteMol offers include:
- Real time ambient occlusion
- Depth aware silhouette enhancement
- Ball-and-stick, space-filling and liquorice visualization modes
- High resolution antialiased snapshots for creating publication quality renderings
- Automatic generation of animated gifs of rotating molecules for web page animations
- Interactive rendering of macromolecules (>100k atoms)
QuteMol reads PDB files as input.
There are three methods to install qutemol 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 qutemol Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install qutemol using apt-get by running the following command:
sudo apt-get -y install qutemolInstall qutemol Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install qutemol using apt by running the following command:
sudo apt -y install qutemolInstall qutemol 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 qutemol using aptitude by running the following command:
sudo aptitude -y install qutemolHow To Uninstall qutemol on Kali Linux
To uninstall only the qutemol package we can use the following command:
sudo apt-get remove qutemolUninstall qutemol And Its Dependencies
To uninstall qutemol and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove qutemolRemove qutemol Configurations and Data
To remove qutemol configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge qutemolRemove qutemol configuration, data, and all of its dependencies
We can use the following command to remove qutemol configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge qutemolDependencies
qutemol have the following dependencies:
References
Summary
In this tutorial we learn how to install qutemol package on Kali Linux using different package management tools: apt, apt-get and aptitude.