#Dvb-T
2 posts tagged Dvb-T
Raspberry Pi & @Flightradar24
In a couple of lines: how to get FR24 (+ dump1090) to work on your Raspberry Pi.
Be sure to have the right hardware: flightradar24.com/dvbt-stick and … obviously … a RPi.
I got a NooElec from Amazon because I didn’t have the patience to wait for something (that might not work) from AliExpress.
As root:
apt-get update && apt-get install cmake gcc pkg-config libusb-1.0 make git-core libc-dev
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr
mkdir build
cd build
cmake ../ -DINSTALL_UDEV_RULES=ON
make && make install
ldconfig
cd ../..