Skip to content

Instantly share code, notes, and snippets.

@n8foo
Created August 10, 2014 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n8foo/79209ddeeec737ee9a19 to your computer and use it in GitHub Desktop.
Save n8foo/79209ddeeec737ee9a19 to your computer and use it in GitHub Desktop.
RPI SDR Install Instructions
# 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