From 35cef8831b7c3be6a23b66dfc062bea45eab62ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20M=C3=A1hr?= Date: Thu, 20 Mar 2025 12:21:48 +0100 Subject: [PATCH] Update installation.mdx 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 0b435f746..51977094f 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