How To Install libosmo-fl2k-dev on Debian 10
Introduction
In this tutorial we learn how to install libosmo-fl2k-dev
on Debian 10.
What is libosmo-fl2k-dev
libosmo-fl2k-dev is:
This software allows one to use USB 3.0 to VGA adapters based on the Fresco Logic FL2000 chip as general purpose DACs and SDR transmitter generating a continuous stream of samples by avoiding the HSYNC and VSYNC blanking intervals.
This package provides the development files.
There are three methods to install libosmo-fl2k-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 libosmo-fl2k-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 libosmo-fl2k-dev
using apt-get
by running the following command:
sudo apt-get -y install libosmo-fl2k-dev
Install libosmo-fl2k-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libosmo-fl2k-dev
using apt
by running the following command:
sudo apt -y install libosmo-fl2k-dev
Install libosmo-fl2k-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 libosmo-fl2k-dev
using aptitude
by running the following command:
sudo aptitude -y install libosmo-fl2k-dev
How To Uninstall libosmo-fl2k-dev on Debian 10
To uninstall only the libosmo-fl2k-dev
package we can use the following command:
sudo apt-get remove libosmo-fl2k-dev
Uninstall libosmo-fl2k-dev And Its Dependencies
To uninstall libosmo-fl2k-dev
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libosmo-fl2k-dev
Remove libosmo-fl2k-dev Configurations and Data
To remove libosmo-fl2k-dev
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libosmo-fl2k-dev
Remove libosmo-fl2k-dev configuration, data, and all of its dependencies
We can use the following command to remove libosmo-fl2k-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libosmo-fl2k-dev
Dependencies
libosmo-fl2k-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libosmo-fl2k-dev
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.