Howto Install Piaware 4.0 on Debian-10 amd64, Ubuntu-20 amd64 & Kali-2020 amd64 on PC

6 - B O N U S

6.0 Piaware-web

Copy-paste following command and press Enter key.

sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/piaware-ubuntu20-amd64/master/install-piaware-web.sh)"

6.1 - ModeSMixer2

6.1.1 - For Debian 10, copy-paste following command and press Enter key.
sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/mm2/master/install-mm2-debian10.sh)"

6.1.2 - For Ubuntu20 and Kali2020, copy-paste following command and press Enter key.
sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/mm2/master/install-mm2-ubuntu20.sh)"

6.1.3 - When the script finishes installation, it will display instructions to configure. Follow those instructions

6.1.4 - For help and to list all config parameters:
modesmixer2 --help

6.1.5 - For detailed Install, Configuration, and Uninstall instructions:
https://github.com/abcd567a/mm2/blob/master/README.md

 

6.2 - Flightradar24 Feeder

6.2.1 - Issue following two commands to download and install fr24feed’s deb package for amd64 architecture:

wget https://repo-feed.flightradar24.com/linux_x86_64_binaries/fr24feed_1.0.25-3_amd64.deb    

sudo dpkg -i fr24feed_1.0.25-3_amd64.deb   

 

6.2.2 - CONFIGURE

CASE (a): If you have a sharing key:
sudo nano /etc/fr24feed.ini

Above command will open a file with following entries

bs=yes
raw=yes
mlat="yes"
mlat-without-gps="yes"

Add following lines to the file fr24feed.ini (replace xxxxxxxxxxx by your actual sharing key).

receiver="beast-tcp"
host="127.0.0.1:30005"
fr24key="xxxxxxxxxxxxxx"

Save file (Ctrl+o) and close (Ctrl+x)

Restart fr24feed
sudo systemctl restart fr24feed

Wait for few minutes, then check status
fr24feed-status

CASE (b): If you do NOT have a sharing key:
signup using following command and provide your details such as email, latitude, longitude etc

sudo fr24feed --signup
sudo systemctl restart fr24feed

Wait for fe minutes, then check status
fr24feed-status

 

6.3 - Planefinder feeder

This method uses i386 deb package, as planefinder’s amd64 package is not available

6.3.1 - Prepare x86_64 OS to accept i386 deb package and i386 linux binary

sudo dpkg --add-architecture i386   
## Check
dpkg --print-foreign-architectures    
# i386

## Update apt 
sudo apt update   

 

6.3.2 - Install dependencies

sudo apt install gcc-8-base:i386 libc6:i386 libgcc1:i386 libidn2-0:i386 libunistring2:i386   

 

6.3.3 - Download and install deb package “pfclient_4.1.1_i386.deb”

wget http://client.planefinder.net/pfclient_4.1.1_i386.deb   

sudo dpkg -i pfclient_4.1.1_i386.deb   

sudo systemctl status pfclient   

 

6.3.4 - In your browser go to page localhost:30053 (or to IP:30053 from another computer)
If you dont have a sharing key: Add your email and other details
If you have sharing key, add it & latitude, longitude.

 

 

2 Likes