Created
July 11, 2015 08:27
-
-
Save matbor/503c762370052bbd0e76 to your computer and use it in GitHub Desktop.
Second script, this one install the pager components for the Pi.
This file contains hidden or 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 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