Raspberry Pi Model 2, 3, 4 with Kali Linux 2021 and 2022
How to Install dump1090-fa, Piaware, FR24, Planefinder, and RB24 data feeders
Download page:
https://www.offensive-security.com/k...ux-arm-images/
STEP-1: Prepration
1.1 - Edit file /etc/apt/sources.list
Code:
sudo nano /etc/apt/sources.list
Remove # from the start of following line
Code:
#deb-src http://http.kali.org/kali kali-rolling main contrib non-free
Update apt
Code:
sudo apt-get update
1.2 - Install the tools required to build packages
Code:
sudo apt-get install debhelper pkg-config
wget http://ftp.us.debian.org/debian/pool/main/d/debhelper/dh-systemd_13.2.1_all.deb
sudo dpkg -i dh-systemd_13.2.1_all.deb
STEP-2: Install dump1090-fa
Copy-paste following command in SSH console and press Enter key. The script will install dump1090-fa.
Code:
sudo bash -c "$(wget -O - https://github.com/abcd567a/piaware-ubuntu-debian-amd64/raw/master/install-dump1090-fa.sh)"
STEP-3: Install Piawaredata feeder
Copy-paste following command in SSH console and press Enter key. The script will install piaware.
Code:
sudo bash -c "$(wget -O - https://github.com/abcd567a/piaware-ubuntu-debian-amd64/raw/master/install-piaware.sh)"
STEP-4: Install Flightradar24 data feeder
Copy-paste following command in SSH console and press Enter key. The script will install FR24 feeder
Code:
sudo bash -c "$(wget -O - https://repo-feed.flightradar24.com/install_fr24_rpi.sh)"
When installation completes, you will be asked to enter email and fr24key (if you already have one)
After that it will start configuration. DO NOT select "1 - DVB-T". Select "4 - ModeSBeast (TCP)"
CAUTION: If you select receiver DVBT, then FR24 feeder will try to install dump1090-mutability, and this will mess up your installation.
STEP-5: Install Planefinder data feeder
Code:
wget http://client.planefinder.net/pfclient_5.0.161_armhf.deb
sudo dpkg -i pfclient_5.0.161_armhf.deb
After installation is complete, open your browser and go to this address to enter your particulars and planefinder share code (if you have one)
IP-of-PI:30053
STEP-6: Install Radarbox24 data feeder
6.1 - Download installation script and edit it
Code:
wget http://apt.rb24.com/inst_rbfeeder.sh
sudo nano inst_rbfeeder.sh
In the editor, scroll down to following line
Code:
VERS=`lsb_release -c | awk -F ':' '{print $2}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'`
Place a # at start of this line
Add new line VERS=bullseye
The code will become like this:
Code:
#VERS=`lsb_release -c | awk -F ':' '{print $2}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'`
VERS=bullseye
6.2 - Run the installation script
Code:
sudo bash inst_rbfeeder.sh
6.3 - After installation is completed, enable and restart rbfeeder
Code:
sudo systemctl enable rbfeeder
sudo systemctl restart rbfeeder