Learn how to install GNU Radio into Linux and decode all frequencies around you. Install the last version full patched.
GNU Radio is an amazing tool to manipulate signals processing logic from radios with Software
Install some dependencies
Before install our software let’s first all necessary dependencies, pay attention to any error that may occur during the installation.
sudo apt-get install cmake
sudo apt-get install build-essential libtool shtool autoconf automake git-core pkg-config make gcc
sudo apt-get install libpcsclite-dev libtalloc-dev gnutls-dev libsctp-dev libmnl-dev
Install libosmocore
Clone the libosmocore repo from github.
git clone git://git.osmocom.org/libosmocore.git
Enter the repo folder and execute autoconf
cd libosmocore/
autoreconf -i
Configure the package on our system, compile libosmocore and then install it
./configure
make
sudo make install
Reload all libs
sudo ldconfig -i
Install GNU-Radio
sudo apt-get install gnuradio gnuradio-dev