.: RealADSB :.


Steps to integrate adsb_hub with FR24 on Raspberry Pi

  1. Use SSH terminal to connect: ssh pi@ip_of_raspberry, it will ask password which is raspberry by default
  2. Next step is to download adsb_hub package. Command will be wget http://www.realadsb.com/dl/realadsb.zip
  3. Unzip the package using unzip realadsb.zip In case unzip is not found you can install it with command sudo apt-get install unzip
  4. Check version of Java by executing java -version If version is below 11.0 please upgrade sudo apt-get install openjdk-11-jdk If some packages reported missing try sudo apt-get update and then repeat installation
  5. Then cd realadsb and run ./startfr24.sh
  6. Now you can connect from RealADSB iOS app using ip_of_raspberry
  7. You can always check if adsb_hub is running and get process id with command like ps aux | grep adsb_hub
  8. All errors will be reported in adsb_log.err file

When everything is working you can autostart adsb_hub after reboot by editing /etc/rc.local file. In order to do that run sudo vi /etc/rc.local and add before exit 0 in the end:
# Auto run adsb_hub
sudo /home/pi/realadsb/startfr24.sh

Enjoy your radiospotting!