Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save iNem0o/6346423 to your computer and use it in GitHub Desktop.

Select an option

Save iNem0o/6346423 to your computer and use it in GitHub Desktop.
Installer script for rtl_sdr, multimon-ng and kalibrate-rtl on raspberry pi  
#!/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
@pkunze

pkunze commented Feb 14, 2016

Copy link
Copy Markdown

Awesome, saved me a ton of time! Thanks a lot!

@koppi

koppi commented Jul 1, 2016

Copy link
Copy Markdown

Thank's!

@shakilahmid

Copy link
Copy Markdown

how kalibrate run in terminal.?
tell me the command?

@iDoka

iDoka commented May 13, 2019

Copy link
Copy Markdown

how kalibrate run in terminal.?
tell me the command?

e.g.
kal -s GSM900

@iDoka

iDoka commented May 13, 2019

Copy link
Copy Markdown

multimonNG installation failed.
Probably instruction obsolete according to different Qt dependencies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment