How To Install libgnuradio-limesdr0 on Debian 10

Learn how to install libgnuradio-limesdr0 on Debian 10 with this tutorial. libgnuradio-limesdr0 is LimeSDR blocks for GnuRadio (runtime library)

Introduction

In this tutorial we learn how to install libgnuradio-limesdr0 on Debian 10.

What is libgnuradio-limesdr0

libgnuradio-limesdr0 is:

LimeSDR is a low cost, open source software defined radio (SDR) platform that can be used to support just about any type of wireless communication standard.

Currently this plugin supports LimeSDR-USB and LimeSDR-Mini boards.

The gr-limesdr blocks for GnuRadio can be used to create flowgraphs that interface LimeSDR devices through liblimesuite.

This package contains the shared library.

There are three methods to install libgnuradio-limesdr0 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 libgnuradio-limesdr0 Using apt-get

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

sudo apt-get update

After updating apt database, We can install libgnuradio-limesdr0 using apt-get by running the following command:

sudo apt-get -y install libgnuradio-limesdr0

Install libgnuradio-limesdr0 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgnuradio-limesdr0 using apt by running the following command:

sudo apt -y install libgnuradio-limesdr0

Install libgnuradio-limesdr0 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 libgnuradio-limesdr0 using aptitude by running the following command:

sudo aptitude -y install libgnuradio-limesdr0

How To Uninstall libgnuradio-limesdr0 on Debian 10

To uninstall only the libgnuradio-limesdr0 package we can use the following command:

sudo apt-get remove libgnuradio-limesdr0

Uninstall libgnuradio-limesdr0 And Its Dependencies

To uninstall libgnuradio-limesdr0 and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove libgnuradio-limesdr0

Remove libgnuradio-limesdr0 Configurations and Data

To remove libgnuradio-limesdr0 configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge libgnuradio-limesdr0

Remove libgnuradio-limesdr0 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libgnuradio-limesdr0

Dependencies

libgnuradio-limesdr0 have the following dependencies:

References

Summary

In this tutorial we learn how to install libgnuradio-limesdr0 package on Debian 10 using different package management tools: apt, apt-get and aptitude.