netbirdio / dashboard

NetBird Management Service Web UI Panel
https://app.netbird.io
BSD 3-Clause "New" or "Revised" License
274 stars 63 forks source link

GLIBC_2.32 & GLIBC_2.34 not found #173

Open elpiel opened 1 year ago

elpiel commented 1 year ago

I've just installed netbird with the netbird-ui on my Ubuntu 20.04 linux machine but I cannot start the UI:

$ netbird-ui 
netbird-ui: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by netbird-ui)
netbird-ui: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by netbird-ui)

I already have installed:

but the error stays the same

aduzsardi commented 10 months ago

Same ... using ubuntu 20.04 as well But afaik , you don't really need netbird-ui

LucaSoato commented 6 months ago

Same here :/

aduzsardi commented 6 months ago

From what i've seen their releases for netbird-ui only work with Ubuntu 22.04+ If you really need it you can build it yourself in a docker container

mkdir netbird-host
cd netbird-host
docker run --rm -it -v `pwd`:/netbird-host golang:1.21-bullseye bash
apt update
apt install -yy libappindicator3-dev libxxf86vm-dev xorg-dev libgtk-3-dev libgl1-mesa-dev libpcap-dev
git clone https://github.com/netbirdio/netbird.git
cd netbird
git checkout v0.27.10 #Current version
cd ./client/ui
go build -o netbird-ui
cp netbird-ui /netbird-host/
exit