How To Install ncbi-rrna-data on Kali Linux

In this tutorial we learn how to install ncbi-rrna-data on Kali Linux. ncbi-rrna-data is large rRNA BLAST databases distributed with the NCBI toolkit

Introduction

In this tutorial we learn how to install ncbi-rrna-data on Kali Linux.

What is ncbi-rrna-data

ncbi-rrna-data is:

This package contains some ribosomal RNA BLAST databases distributed as part of the NCBI C Toolkit that are too large and specialized to include in ncbi-data. Specifically, it contains the databases Combined16SrRNA, LSURef_93.fasta, LSU_nomito_nochloro_noplastid, SSURef_93.fasta, and SSU_nomito_nochloro_noplastid, along with alias files to facilitate searching some of them in conjunction with databases included in ncbi-data.

There are three methods to install ncbi-rrna-data 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 ncbi-rrna-data Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install ncbi-rrna-data using apt-get by running the following command:

sudo apt-get -y install ncbi-rrna-data

Install ncbi-rrna-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ncbi-rrna-data using apt by running the following command:

sudo apt -y install ncbi-rrna-data

Install ncbi-rrna-data 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 ncbi-rrna-data using aptitude by running the following command:

sudo aptitude -y install ncbi-rrna-data

How To Uninstall ncbi-rrna-data on Kali Linux

To uninstall only the ncbi-rrna-data package we can use the following command:

sudo apt-get remove ncbi-rrna-data

Uninstall ncbi-rrna-data And Its Dependencies

To uninstall ncbi-rrna-data and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove ncbi-rrna-data

Remove ncbi-rrna-data Configurations and Data

To remove ncbi-rrna-data configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge ncbi-rrna-data

Remove ncbi-rrna-data configuration, data, and all of its dependencies

We can use the following command to remove ncbi-rrna-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ncbi-rrna-data

Dependencies

ncbi-rrna-data have the following dependencies:

References

Summary

In this tutorial we learn how to install ncbi-rrna-data package on Kali Linux using different package management tools: apt, apt-get and aptitude.