netbird
netbird copied to clipboard
Build GUI deb packages for arm
Is your feature request related to a problem? Please describe. I cant install netbird on my rasberry pi since there arent deb packages for arm
Describe the solution you'd like build deb packages for arm
Describe alternatives you've considered Not using netbird
Additional context no context needed
Hello @ilovethensa, NetBird has CLI packages for ARM systems. You can install it with the following steps:
With the convenience script:
export SKIP_UI_APP=true
curl -fsSL https://pkgs.netbird.io/install.sh | sh
Manual steps:
- Add repository:
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg -y
curl -sSL https://pkgs.netbird.io/debian/public.key | sudo gpg --dearmor --output /usr/share/keyrings/netbird-archive-keyring.gpg
echo 'deb [signed-by=/usr/share/keyrings/netbird-archive-keyring.gpg] https://pkgs.netbird.io/debian stable main' | sudo tee /etc/apt/sources.list.d/netbird.list
- Update APT's cache
sudo apt-get update
- Install the package
sudo apt-get install netbird
It's good that the installation of the CLI package can complete even on an aarch64 system, but with the increasing stabilisation of Asahi Linux at daily-driver quality as well as more ARM devices hitting the market, I think it's worth investigating whether aarch64 builds of the netbird-ui can be enabled.