Created
August 10, 2014 03:57
-
-
Save n8foo/79209ddeeec737ee9a19 to your computer and use it in GitHub Desktop.
RPI SDR Install Instructions
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
# Install dependencies | |
sudo apt-get update | |
sudo apt-get -y install git cmake build-essential libusb-1.0 qt4-qmake libpulse-dev libx11-dev | |
# Fetch and compile rtl-sdr source | |
mkdir -p ~/src/ | |
cd ~/src/ | |
git clone git://git.osmocom.org/rtl-sdr.git | |
cd rtl-sdr | |
mkdir build | |
cd build | |
cmake ../ -DINSTALL_UDEV_RULES=ON | |
make | |
sudo make install | |
sudo ldconfig | |
# Fetch and compile multimonNG | |
cd ~/src/ | |
git clone https://github.com/EliasOenal/multimonNG.git | |
cd multimonNG | |
mkdir build | |
cd build | |
qmake ../multimon-ng.pro | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment