Last active
March 3, 2017 13:02
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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