Skip to content

Instantly share code, notes, and snippets.

@matbor
Created July 11, 2015 08:27
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 matbor/503c762370052bbd0e76 to your computer and use it in GitHub Desktop.
Save matbor/503c762370052bbd0e76 to your computer and use it in GitHub Desktop.
Second script, this one install the pager components for the Pi.
#!/bin/bash
#from https://www.raspberrypi.org/forums/viewtopic.php?t=45142#
# 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
echo "finished, check webpage for more info"
echo "https://www.raspberrypi.org/forums/viewtopic.php?t=45142#"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment