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 +```