From 553d2908b88aafbd1eb3ad209f66449a8c632f00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20M=C3=A1hr?= Date: Thu, 20 Mar 2025 12:38:14 +0100 Subject: [PATCH] Update installation.mdx (#289) tar xcf does not make sense, as x instructs tar to unpack an archive while c instructs it to create one. I changed c to z to tell tar to unpack and decompress the archive. --- src/pages/how-to/installation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/how-to/installation.mdx b/src/pages/how-to/installation.mdx index 0b435f74..51977094 100644 --- a/src/pages/how-to/installation.mdx +++ b/src/pages/how-to/installation.mdx @@ -254,7 +254,7 @@ NetBird has an official iOS application that you can download from the App Store 3. Decompress ```bash - tar xcf ./netbird_.tar.gz + tar xzf ./netbird_.tar.gz sudo mv netbird /usr/bin/netbird sudo chown root:root /usr/bin/netbird sudo chmod +x /usr/bin/netbird