From b07ad3f87f794502b840e6608ef31927d8d161ea Mon Sep 17 00:00:00 2001 From: Simen <97337442+simen64@users.noreply.github.com> Date: Mon, 22 Jul 2024 23:29:51 +0200 Subject: [PATCH] Add section on updating on linux Added a section on how to update the netbird client on linux. --- src/pages/how-to/installation.mdx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/pages/how-to/installation.mdx b/src/pages/how-to/installation.mdx index 0a135bac..54dc7270 100644 --- a/src/pages/how-to/installation.mdx +++ b/src/pages/how-to/installation.mdx @@ -300,3 +300,18 @@ netbird up --management-url https:/// ``` To override it see the solution #1 above. + +## Updating + +### Linux + +If your netbird client was installed through a package manager, use that to update. +If you used the one-command script to install, you can follow this to update: + +```bash +netbird down +curl -fsSLO https://pkgs.netbird.io/install.sh +chmod +x install.sh +./install.sh --update +netbird up +```