Skip to content

Instantly share code, notes, and snippets.

@siddharthdeore
Created October 19, 2019 12:35
Show Gist options
  • Select an option

  • Save siddharthdeore/3fb38ff5725a4e4f2db45620a67fa19e to your computer and use it in GitHub Desktop.

Select an option

Save siddharthdeore/3fb38ff5725a4e4f2db45620a67fa19e to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo apt-get update
sudo apt-get upgrade
sudo printf 'blacklist dvb_usb_rtl28xxu\nblacklist rtl2832\nblacklist rtl2830' > /etc/modprobe.d/nortl.conf
sudo apt-get install git-core
sudo apt-get install git
sudo apt-get install cmake
sudo apt-get install libusb-1.0-0-dev
sudo apt-get install build-essential
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
cd ~
sudo cp ./rtl-sdr/rtl-sdr.rules /etc/udev/rules.d/
git clone git://github.com/MalcolmRobb/dump1090.git
cd dump1090
make
sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment