netbird icon indicating copy to clipboard operation
netbird copied to clipboard

Build GUI deb packages for arm

Open ilovethensa opened this issue 2 years ago • 2 comments

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

ilovethensa avatar Oct 22 '23 14:10 ilovethensa

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:

  1. 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
  1. Update APT's cache
 sudo apt-get update
  1. Install the package
 sudo apt-get install netbird

mlsmaycon avatar Oct 23 '23 10:10 mlsmaycon

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.

alexhaydock avatar Feb 04 '24 10:02 alexhaydock