How To Install quorum on Kali Linux
Introduction
In this tutorial we learn how to install quorum
on Kali Linux.
What is quorum
quorum is:
QuorUM enables to obtain trimmed and error-corrected reads that result in assemblies with longer contigs and fewer errors. QuorUM provides best performance compared to other published error correctors in several metrics. QuorUM is efficiently implemented making use of current multi- core computing architectures and it is suitable for large data sets (1 billion bases checked and corrected per day per core). The third-party assembler (SOAPdenovo) benefits significantly from using QuorUM error- corrected reads. QuorUM error corrected reads result in a factor of 1.1 to 4 improvement in N50 contig size compared to using the original reads with SOAPdenovo for the data sets investigated.
There are three methods to install quorum
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 quorum Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install quorum
using apt-get
by running the following command:
sudo apt-get -y install quorum
Install quorum Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install quorum
using apt
by running the following command:
sudo apt -y install quorum
Install quorum 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 quorum
using aptitude
by running the following command:
sudo aptitude -y install quorum
How To Uninstall quorum on Kali Linux
To uninstall only the quorum
package we can use the following command:
sudo apt-get remove quorum
Uninstall quorum And Its Dependencies
To uninstall quorum
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove quorum
Remove quorum Configurations and Data
To remove quorum
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge quorum
Remove quorum configuration, data, and all of its dependencies
We can use the following command to remove quorum
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge quorum
Dependencies
quorum have the following dependencies:
References
Summary
In this tutorial we learn how to install quorum
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.