freesrp-io command not found

In this troubleshooting guide we learn how to fix freesrp-io command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

freesrp-io: command not found

or when using sudo you get the following error message

sudo: freesrp-io: command not found

Solutions to freesrp-io: command not found

How To Fix freesrp-io: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu freesrp-io is provided by libfreesrp-dev package.

libfreesrp-dev is:

The FreeSRP has a tuning range from 70 MHz to 6 GHz, uses a 12-bit ADC with a sampling rate of up to 61.44 MSPS, and has a maximum analog filter bandwidth of 56 MHz. It is a full-duplex radio (can transmit & receive at the same time). The main chip in the unit is the fairly expensive (~$150 USD) AD9364 integrated RF transceiver chip and it also comes with a Xilinx Artix 7 FPGA. Furthermore the hardware and code is entirely open source.

This package is the software that provides control of the USB hardware and an API to pass data to software defined radio applications on the host.

This package contains development files along with a set of command line utilities.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libfreesrp-dev

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libfreesrp-dev.

sudo apt -y install libfreesrp-dev

Or if you have aptitude installed you can use the following command.

sudo aptitude install libfreesrp-dev

Summary

In this tutorial we learn how to fix freesrp-io command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.