How To Install libstaden-read-dev on Debian 10
Introduction
In this tutorial we learn how to install libstaden-read-dev
on Debian 10.
What is libstaden-read-dev
libstaden-read-dev is:
This package contains the header and development files needed to build programs and packages using the Staden io_lib.
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-read-dev
on Debian 10. 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-read-dev 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-read-dev
using apt-get
by running the following command:
sudo apt-get -y install libstaden-read-dev
Install libstaden-read-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libstaden-read-dev
using apt
by running the following command:
sudo apt -y install libstaden-read-dev
Install libstaden-read-dev Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libstaden-read-dev
using aptitude
by running the following command:
sudo aptitude -y install libstaden-read-dev
How To Uninstall libstaden-read-dev on Debian 10
To uninstall only the libstaden-read-dev
package we can use the following command:
sudo apt-get remove libstaden-read-dev
Uninstall libstaden-read-dev And Its Dependencies
To uninstall libstaden-read-dev
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libstaden-read-dev
Remove libstaden-read-dev Configurations and Data
To remove libstaden-read-dev
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libstaden-read-dev
Remove libstaden-read-dev configuration, data, and all of its dependencies
We can use the following command to remove libstaden-read-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libstaden-read-dev
Dependencies
libstaden-read-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libstaden-read-dev
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.