How To Install srsue on Debian 10

Learn how to install srsue on Debian 10 with this tutorial. srsue is User Equipment implementation for LTE

Introduction

In this tutorial we learn how to install srsue on Debian 10.

What is srsue

srsue is:

This software enables using a software defined radio as the user equipment connecting to an LTE network.

srsue provides a complete SDR LTE UE application featuring all layers from PHY to IP.

For running an LTE network, ‘srsenb’ should be used instead.

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

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

sudo apt-get update

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

sudo apt-get -y install srsue

Install srsue Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install srsue using apt by running the following command:

sudo apt -y install srsue

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

sudo aptitude -y install srsue

How To Uninstall srsue on Debian 10

To uninstall only the srsue package we can use the following command:

sudo apt-get remove srsue

Uninstall srsue And Its Dependencies

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

sudo apt-get -y autoremove srsue

Remove srsue Configurations and Data

To remove srsue configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge srsue

Remove srsue configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge srsue

Dependencies

srsue have the following dependencies:

References

Summary

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