Skip to content

Openwebrx radioberry

Johan edited this page Oct 9, 2020 · 5 revisions

Openwebrx for Radioberry.

Hereby a short description on how to make it work:

The installation is based on docker. You need to work with the radioberry device driver.

Install docker:

curl -sSL https://get.docker.com | sh

Check if radioberry firmware is started? You can check this with the following command:

sudo systemctl status radioberry

if radioberry firmware is started you can close it with the following command:

sudo systemctl stop radioberry
docker volume create openwebrx-config
sudo docker run --device /dev/radioberry -p 8073:8073 --tmpfs=/tmp/openwebrx -v openwebrx-config:/etc/openwebrx jketterl/openwebrx-radioberry:latest-armv7l

When using docker, the config will be stored inside a docker volume, so in order to edit the config you will need to find out the filesystem path that is used by docker

(The usual location is /var/lib/docker/volumes/openwebrx-config/_data/):

su
docker volume inspect openwebrx-config|grep Mountpoint
vi config_webrx.py

example config:

https://github.com/jketterl/openwebrx/wiki/Radioberry-device-notes

After changing the openwebrx config restart.

sudo docker container ls
sudo docker stop <uuid>

To update your version of openwebsdr you can use the following command:

sudo docker pull jketterl/openwebrx-radioberry:latest

Hereby a link to the docker hub: https://hub.docker.com/r/jketterl/openwebrx