From a90b010ec61b827ed8742fda65622a7b95e99a50 Mon Sep 17 00:00:00 2001 From: Simen <97337442+simen64@users.noreply.github.com> Date: Mon, 12 Aug 2024 13:37:09 +0200 Subject: [PATCH] Add section on updating on linux (#203) 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 606b040c..73cfa9ed 100644 --- a/src/pages/how-to/installation.mdx +++ b/src/pages/how-to/installation.mdx @@ -330,3 +330,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 +```