Installing gnuradio on Ubuntu 17.04 LTS
Example of installing gnuradio on Ubuntu 17.04 LTS using the command sudo apt-get install gnuradio.
Quick installation of gnuradio:
Step 1: Update system:
sudo apt-get update
Step 2: Install: gnuradio
Ater updaing the OS run following command to install the packae:
sudo apt-get install gnuradio
Package Details | |
Package: | gnuradio |
Version: | 3.7.10.1-2 |
Maintainer: | Ubuntu Developers |
Home page: | http://gnuradio.org/ |
Description: | GNU Radio Software Radio Toolkit GNU Radio provides signal processing blocks to implement software radios. It can be used with readily-available low-cost external RF hardware to create software-defined radios, or without hardware in a simulation-like environment. It is widely used in hobbyist, academic and commercial environments to support both wireless communications research and real-world radio systems. . GNU Radio applications are primarily written using the Python programming language, while the supplied performance-critical signal processing path is implemented in C++ using processor floating-point extensions, where available. Thus, the developer is able to implement real-time, high-throughput radio systems in a simple-to-use, rapid-application-development environment. . While not primarily a simulation tool, GNU Radio does support development of signal processing algorithms using pre-recorded or generated data, avoiding the need for actual RF hardware. . This package contains the gnuradio-companion, a graphical tool for creating signal flow graphs and generating flow-graph source code. Also included are a variety of tools and utility programs. |
Distro: | Ubuntu 17.04 |
Release: | |
Repo/Section: | universe/comm |
How to install gnuradio on Ubuntu 17.04?
First of all update your system with the command:
sudo apt-get update
Above command will download the package lists for Ubuntu 17.04 on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If gnuradio is not installed on your compter then the command 'dpkg -L gnuradio' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L gnuradio dpkg-query: package 'gnuradio' is not installed Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing gnuradio:
After system update use the following command to install gnuradio:
sudo apt-get install gnuradio
Above command will confirm before installing the package on your Ubuntu 17.04 Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
How to uninstall/remove gnuradio from Ubuntu 17.04?
Now we will see the commands for uninstalling the gnuradio from Ubuntu 17.04. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the gnuradio following command is used:
sudo apt-get remove gnuradio
Following command is used to remove the gnuradio package along with its dependencies:
sudo apt-get remove --auto-remove gnuradio
This will remove gnuradio and all its dependent packages which is no longer needed in the system.
Completely removing gnuradio with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge gnuradio
or you can use following command also:
sudo apt-get purge --auto-remove gnuradio
Above command will remove all the configuration files and data associated with gnuradio package. You can can't recover the delete data, so, use this command with care.