anything
AirNav RadarBox
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 


Author Topic: How to install rbfeeder in rpm based distro  (Read 2032 times)

0 Members and 1 Guest are viewing this topic.

Palando

  • New Member
  • *
  • Posts: 3
How to install rbfeeder in rpm based distro
« on: October 30, 2023, 03:35:13 PM »
Hello,

I have an RPM based Linux distribution on my server (Alma Linux). Can I install rbfeeder on it? The install script is only for Debian based distros.

I currently have a small device with dump1090 on it and fr24 on my server to feed the tracks to flightradar24. I would like to also feed the tracks to RadarBox.

Regards
Palando

abcd567

  • Hero Member
  • *****
  • Posts: 849
  • CYYZ - Toronto
Re: How to install rbfeeder in rpm based distro
« Reply #1 on: October 30, 2023, 11:34:39 PM »
Install program "alien" to convert .deb to .rpm and vice-versa
Code: [Select]
alien --to-rpm /path/to/file.deb

And vice-versa:
Code: [Select]
alien --to-deb /path/to/file.rpm


https://wiki.debian.org/Alien





Palando

  • New Member
  • *
  • Posts: 3
Re: How to install rbfeeder in rpm based distro
« Reply #2 on: October 31, 2023, 09:04:51 AM »
Thank you!

Do you know (or anybody else) how to download the deb file? I only find the install bash script which adds an apt repository to the distro. I can not find a URL to the deb file. (I need the x86_64 version.)
« Last Edit: October 31, 2023, 09:06:35 AM by Palando »

abcd567

  • Hero Member
  • *****
  • Posts: 849
  • CYYZ - Toronto
Re: How to install rbfeeder in rpm based distro
« Reply #3 on: October 31, 2023, 01:23:14 PM »
Radarbox24 do NOT have any package for installation on x86_64 machines. They have only armhf and arm64 deb packages. On Debian based OS these packages can be downloaded (after adding rb24 repository to apt sources list) by adding --download-only  to install command like below:

Code: [Select]
sudo apt install --download-only rbfeeder

This will download rbfeeder deb package and any dependencies it needs, and place them in folder  /var/cache/apt/archives from where you can get it.

However radarbox feeder can be installed on Linux x86_64 computers through Docker. I have successfully installed it on Debian-11 x86_64 OS, but I am not sure if it can be installed on rpm based OS. You may try and see.

https://github.com/sdr-enthusiasts/docker-radarbox

The decoder offered by this Docker site is readsb-protobuff. If you already have a decoder installed, you may no need to install readsb-protobuf.

« Last Edit: October 31, 2023, 01:29:01 PM by abcd567 »

Palando

  • New Member
  • *
  • Posts: 3
Re: How to install rbfeeder in rpm based distro
« Reply #4 on: October 31, 2023, 01:34:14 PM »
Thank you very much! I think the docker container is exactly what I need as I have a dump1090 in my network on an OpenWRT router. I will give it a try in the next days. :-)