Add section on updating on linux (#203)

Added a section on how to update the netbird client on linux.
This commit is contained in:
Simen
2024-08-12 13:37:09 +02:00
committed by GitHub
parent df542f9e01
commit a90b010ec6

View File

@@ -330,3 +330,18 @@ netbird up --management-url https://<CORRECT HOST:PORT>/
```
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
```