ubuntu16.04安装GNU Radio

在ubuntu16.04系统下安装GNU Radio

  • 写在前面
  • 换源及安装必备依赖包
  • 安装GNU Radio
  • 未来更新

写在前面

大家好,这里是Reddish,作为csdn新人,在这里分享如何在ubuntu16.04环境下安装GNU Radio,自己摸索了几天,发现之前很多教程已经不适用了,原因在于GNU radio的最新版本已经不支持ubuntu16.04,因此会在安装过程中带来许多难题,本教程参考了很多博主的安装过程,感谢各位博主的分享!下面就进入正题吧

换源及安装必备依赖包

1、换源

cd /etc/apt
sudo cp sources.list sources.list.bak 
sudo gedit sources.list 

直接覆盖sources.list文件

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释  
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse  
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse  
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse  
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse  
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse  
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse  
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse  
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse  
  
# 预发布软件源,不建议启用  
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse  
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse

更新

sudo apt-get update

2、安装vmware(如果可以在桌面与虚拟机之间拖拽文件的话跳过此步)

sudo apt-get autoremove open-vm-tools
sudo apt-get install open-vm-tools
sudo apt-get install open-vm-tools-desktop

https://blog.csdn.net/chichu261/article/details/82799833
3、安装依赖包

sudo apt-get install libfontconfig1-dev libxrender-dev libpulse-dev \
swig g++ automake autoconf libtool python-dev libfftw3-dev \
libcppunit-dev libboost-all-dev libusb-dev libusb-1.0-0-dev fort77 \
libsdl1.2-dev git-core libqt4-dev python-numpy ccache \
python-opengl libgsl-dev python-cheetah python-mako \
python-lxml doxygen qt4-default qt4-dev-tools libusb-1.0-0-dev \
libqwt5-qt4-dev libqwtplot3d-qt4-dev pyqt4-dev-tools python-qwt5-qt4 \
cmake git-core wget libxi-dev python-docutils \
gtk2-engines-pixbuf r-base-dev python-tk \
liborc-0.4-0 liborc-0.4-dev libasound2-dev python-gtk2 \
libzmq-dev python-requests python-sphinx python-zmq \
libncurses5 libncurses5-dev python-wxgtk3.0 python-scipy python-matplotlib

安装GNU Radio

先来检查一下可用版本

sudo apt-cache madison gnuradio

执行安装命令

sudo apt-get install gnuradio=3.7.9.1-2ubuntu1

最后启动软件

gnuradio-companion

启动成功后的软件如下图所示
ubuntu16.04安装GNU Radio_第1张图片

https://blog.csdn.net/qq_23958451/article/details/100730865

未来更新

之后的博客将会围绕GNU radio的使用展开,欢迎在博客下方讨论~

参考链接:
https://blog.csdn.net/yctjin/article/details/79798598
https://blog.csdn.net/qq_37748396/article/details/80339366

你可能感兴趣的:(ubuntu16.04安装GNU Radio)