Dump1090
First time (installation, etc.)
steps to install dump1090:
- Download from dump1090 from https://github.com/antirez/dump1090
brew install pkg-config
brew install librtlsdr
brew install
make
ormake LIBRARY_PATH=/usr/local/lib
(if make doesn’t work)if those don’t work and you get a lusb error try the below: (may need to point to library location of lusb/libusb)
cc -g -o dump1090 dump1090.o anet.o -L/opt/homebrew/Cellar/librtlsdr/0.6.0/lib
-L/opt/homebrew/Cellar/libusb/1.0.26/lib-lrtlsdr -lusb-1.0 -lpthread -lm
- Copy it to
/usr/local/bin
(sudo cp dump1090 /usr/local/bin
) - to check: run
/usr/local/bin/dump1090
& make sure it returns data
Note for linux (ubuntu 18.04)
- Download from dump1090 from https://github.com/antirez/dump1090
sudo apt-get install pkg-config
sudo apt-get install librtlsdr-dev
make
Run the program
Plug in your RTLSDR device
Run
/usr/local/bin/dump1090
- If you see output from the terminal, then you finish the setup successfully!
- You can pipe to an output file and run client.py with that, ex:
/usr/local/bin/dump1090
> live_dump1090.txtpython client -f live_dump1090.txt