ikitsu's blog


Setting Up a Flightradar24 Feeder on any Linux Distro

Posted on

Becoming an FR24 data contributor unlocks 60+ premium features, which was one of the main reasons I wanted to build my own ADS-B receiver lol.

The official guide only mentions the Raspberry Pi, and the Linux software installation script is for Debian-based distros. In practice, though, the feeder can be set up on any Linux distro.

Requirement

Installation

Download the software on this page, extract the tarball to get the executable fr24feed. Then run this command to configure it:

sudo ./fr24feed --signup

Enter the information step by step:

After that, create the service file manually. Here is the service file I'm using:

[Unit]
Description=Flightradar24 Feeder
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
ExecStart=/path/to/fr24feed --config-file=/etc/fr24feed.ini
Restart=always
RestartSec=5
User=root

[Install]
WantedBy=multi-user.target

Substitute the /path/to/fr24feed to the actual one, save it as /etc/systemd/system/fr24feed.service. Then:

sudo systemctl daemon-reload
sudo systemctl enable fr24feed
sudo systemctl start fr24feed
sudo systemctl status fr24feed

You can check the feeder status locally by finding the port number in the line [I] [httpd]Server started, listening on :::port and then visiting 127.0.0.1:port in your browser.

Conclusion

Now you can give Claude Code / Open Code this post and let it configure everything for you :)