DragonOS Focal Setup OpenBTS after Docker Install (LimeSDR, UHD) part 1

Опубликовано: 30 Август 2026
на канале: cemaxecuter
2,394
30

In this video I show (what seems like) a possible way to get OpenBTS running in DragonOS Focal by using Docker. The OpenBTS Docker container is meant for a LimeSDR, not a LimeSDR mini. I do not have a LimeSDR and my B205mini isn't supported.

I'll have to come back to this topic and do a second part once I get either a LimeSDR or a B210/200. I really want to check out how the SMS messages are logged and just how it works in general compared to other newer GSM solutions.

Hardware:
LimeSDR mini (Not supported)

Topics covered:

Install Docker
Connect to the Container and start OpenBTS

Tools:
https://docs.docker.com/engine/instal...
https://hub.docker.com/r/cswiger/open...
https://www.nccgroup.com/uk/about-us/...

Twitter: @cemaxecuter

Steps to follow
---------------------------------

sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common

curl -fsSL https://download.docker.com/linux/ubu... | sudo apt-key add -

sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"

sudo apt-get install docker-ce docker-ce-cli containerd.io

sudo docker pull cswiger/openbtslimesdr1a

sudo docker run -it -v /dev/bus/usb:/dev/bus/usb --privileged --userns host --cap-add SYS_NICE -d --name openbts cswiger/openbtslimesdr1a bash

sudo docker attach openbts