Forked from iNem0o/rtl_sdr, multimon-ng and kalibrate-rtl RPi Installer
Created
January 19, 2018 06:14
-
-
Save c0debreaker/dec38603b63fef9dd0e825511d40403c to your computer and use it in GitHub Desktop.
Installer script for rtl_sdr, multimon-ng and kalibrate-rtl on raspberry pi
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/sh | |
# install : | |
# curl -o installer.sh https://gist.github.com/iNem0o/6346423/raw && chmod +x installer.sh && sudo ./installer.sh | |
sudo apt-get update | |
sudo apt-get --no-install-recommends -y install git cmake libusb-1.0-0-dev libpulse-dev libx11-dev screen qt4-qmake libtool autoconf automake libfftw3-dev | |
mkdir ~/src | |
echo "Installation de rtl_sdr" | |
cd ~/src | |
git clone git://git.osmocom.org/rtl-sdr.git | |
cd ~/src/rtl-sdr | |
mkdir build | |
cd build | |
cmake ../ -DINSTALL_UDEV_RULES=ON | |
make | |
sudo make install | |
sudo ldconfig | |
echo "Installation de multimon-ng" | |
cd ~/src | |
git clone https://github.com/EliasOenal/multimonNG.git | |
cd ~/src/multimonNG | |
mkdir build | |
cd build | |
qmake ../multimon-ng.pro | |
make | |
sudo make install | |
echo "Installation de Kalibrate" | |
cd ~/src | |
git clone https://github.com/asdil12/kalibrate-rtl.git | |
cd kalibrate-rtl | |
git checkout arm_memory | |
./bootstrap | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment