How To Install libstaden-read14 on Kali Linux
Introduction
In this tutorial we learn how to install libstaden-read14
on Kali Linux.
What is libstaden-read14
libstaden-read14 is:
This package contains the Staden io_lib, that is renamed in Debian and Fedora ??staden-read?? instead of ??read??. This library supports various DNA sequence read formats, in particular SCF, ABI, ALF, CTF, ZTR, SFF and SRF.
The io_lib from the Staden package is a library of file reading and writing code to provide a general purpose trace file (and Experiment File) reading interface. It has been compiled and tested on a variety of unix systems, MacOS?X and MS Windows.
There are three methods to install libstaden-read14
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 libstaden-read14 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libstaden-read14
using apt-get
by running the following command:
sudo apt-get -y install libstaden-read14
Install libstaden-read14 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libstaden-read14
using apt
by running the following command:
sudo apt -y install libstaden-read14
Install libstaden-read14 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 libstaden-read14
using aptitude
by running the following command:
sudo aptitude -y install libstaden-read14
How To Uninstall libstaden-read14 on Kali Linux
To uninstall only the libstaden-read14
package we can use the following command:
sudo apt-get remove libstaden-read14
Uninstall libstaden-read14 And Its Dependencies
To uninstall libstaden-read14
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libstaden-read14
Remove libstaden-read14 Configurations and Data
To remove libstaden-read14
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libstaden-read14
Remove libstaden-read14 configuration, data, and all of its dependencies
We can use the following command to remove libstaden-read14
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libstaden-read14
Dependencies
libstaden-read14 have the following dependencies:
References
Summary
In this tutorial we learn how to install libstaden-read14
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.