在本教程中,我们学习如何安装 libfreesrp0 Ubuntu 21.10。 libfreesrp0 是 FreeSRP 硬件的软件定义无线电支持(库)
介绍
在本教程中我们学习如何安装 libfreesrp0
在 Ubuntu 21.10。
什么是 libfreesrp0
libfreesrp0 是:
FreeSRP的调谐范围为70 MHz至6 GHz,采用采样率高达61.44 MSPS的12位ADC,最大模拟滤波器带宽为56 MHz。 它是全双工无线电(可以同时发送和接收)。 该装置中的主芯片是相当昂贵的(约 150 美元)AD9364 集成射频收发器芯片,并且还配备了 Xilinx Artix 7 FPGA。 此外,硬件和代码完全开源。
该软件包是提供 USB 硬件控制和 API 的软件,用于将数据传递到主机上的软件定义无线电应用程序。
此程序包包含共享库。
有三种安装方式 libfreesrp0
在 Ubuntu 21.10。 我们可以用 apt-get
, apt
和 aptitude
。 在以下部分中,我们将描述每种方法。 您可以选择其中之一。
使用 apt-get 安装 libfreesrp0
更新 apt 数据库 apt-get
使用以下命令。
更新apt数据库后,我们可以安装 libfreesrp0
使用 apt-get
通过运行以下命令:
sudo apt-get -y install libfreesrp0
使用 apt 安装 libfreesrp0
更新 apt 数据库 apt
使用以下命令。
更新apt数据库后,我们可以安装 libfreesrp0
使用 apt
通过运行以下命令:
sudo apt -y install libfreesrp0
使用 aptitude 安装 libfreesrp0
如果您想遵循此方法,您可能需要先安装 aptitude,因为 aptitude 通常不会默认安装 Ubuntu。 更新 apt 数据库 aptitude
使用以下命令。
更新apt数据库后,我们可以安装 libfreesrp0
使用 aptitude
通过运行以下命令:
sudo aptitude -y install libfreesrp0
如何卸载 libfreesrp0 Ubuntu 21.10
仅卸载 libfreesrp0
打包我们可以使用以下命令:
sudo apt-get remove libfreesrp0
卸载 libfreesrp0 及其依赖项
卸载 libfreesrp0
及其不再需要的依赖项 Ubuntu 21.10,我们可以使用以下命令:
sudo apt-get -y autoremove libfreesrp0
删除 libfreesrp0 配置和数据
去除 libfreesrp0
配置和数据来自 Ubuntu 21.10我们可以使用以下命令:
sudo apt-get -y purge libfreesrp0
删除 libfreesrp0 配置、数据及其所有依赖项
我们可以使用下面的命令来删除 libfreesrp0
配置、数据及其所有依赖项,我们可以使用以下命令:
sudo apt-get -y autoremove --purge libfreesrp0
参考
概括
在本教程中我们学习如何安装 libfreesrp0
封装在 Ubuntu 21.10 使用不同的包管理工具:apt、apt-get 和 aptitude。