Introduction
In this tutorial we learn how to install suitename
on Kali Linux.
What is suitename
suitename is:
Suitename is a program that supports the ROC RNA Ontology Consortium
consensus RNA backbone nomenclature and conformer-list development.
From dihedral-angle input for a specific RNA structure (usually from
Dangle), Suitename categorizes the RNA backbone geometry of each suite
(the sugar-to-sugar version of a residue) either as an outlier or
as belonging to one of the 53 defined conformer bins. The output is
either a one-line-per-suite report, or a linear conformer string (as
shown below the image here) in one of several variant formats. Suitename
is built into MolProbity, producing entries in the multi-criterion chart
for an RNA model and also a suitestring file.
There are three methods to install suitename
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 suitename Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install suitename
using apt-get
by running the following command:
sudo apt-get -y install suitename
Install suitename Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install suitename
using apt
by running the following command:
sudo apt -y install suitename
Install suitename 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 suitename
using aptitude
by running the following command:
sudo aptitude -y install suitename
How To Uninstall suitename on Kali Linux
To uninstall only the suitename
package we can use the following command:
sudo apt-get remove suitename
Uninstall suitename And Its Dependencies
To uninstall suitename
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove suitename
Remove suitename Configurations and Data
To remove suitename
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge suitename
Remove suitename configuration, data, and all of its dependencies
We can use the following command to remove suitename
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge suitename
Dependencies
suitename have the following dependencies:
References
Summary
In this tutorial we learn how to install suitename
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.