Skip to content

Instantly share code, notes, and snippets.

@matbor
Last active March 3, 2017 13:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matbor/0a97fae0b9e2ad405116 to your computer and use it in GitHub Desktop.
Save matbor/0a97fae0b9e2ad405116 to your computer and use it in GitHub Desktop.
First script, installs the SDR rtl on the Pi, see webpage below for more info. Should also work on Ubuntu.
#!/bin/bash
#from http://zr6aic.blogspot.com.au/2013/02/setting-up-my-raspberry-pi-as-sdr-server.html
#install software packages
sudo apt-get update
sudo apt-get -y install cmake libusb-1.0-0.dev build-essential git
#Now install the RTL-2832U USB dongle driver src and compile
cd
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr/
mkdir build
cd build
cmake ../
make
sudo make install
sudo ldconfig
sudo rtl_test -t
echo "see webpage for next steps as you might need to setup the blacklist"
echo "http://zr6aic.blogspot.com.au/2013/02/setting-up-my-raspberry-pi-as-sdr-server.html"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment