From c3eecb4dcc6f9a4365cd71147b8c2b4e76bc11bc Mon Sep 17 00:00:00 2001 From: Shriya Date: Sat, 8 Nov 2025 13:10:30 +0530 Subject: [PATCH] Update install-on-server.md Fix: Correct tar extraction commands in WSL server install guide --- WSL/install-on-server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WSL/install-on-server.md b/WSL/install-on-server.md index 7f4f0b8c..e7114636 100644 --- a/WSL/install-on-server.md +++ b/WSL/install-on-server.md @@ -64,7 +64,7 @@ Now that you've downloaded a Linux distribution, in order to extract its content 1. List the contents of the appx using tar.exe: ```cmd - > tar -tf .\debian.appx + > tar -xf .\debian.appx DistroLauncher-Appx_1.12.2.0_ARM64.appx DistroLauncher-Appx_1.12.2.0_scale-100.appx DistroLauncher-Appx_1.12.2.0_scale-125.appx @@ -80,7 +80,7 @@ Now that you've downloaded a Linux distribution, in order to extract its content ```powershell $debianWSLPath = Join-Path -Path $env:LocalAppData -ChildPath DebianWSL New-Item -Path $debianWSLPath -ItemType Directory | Out-Null - Expand-Archive -Path ".\DistroLauncher-Appx_1.12.2.0_x64.appx" -DestinationPath $debianWSLPath + tar -xf .\DistroLauncher-Appx_1.12.2.0_x64.appx -C "$env:USERPROFILE\AppData\Local\DebianWSL" ``` 1. Add your Linux distribution path to the Windows environment PATH (`C:\Users\Administrator\Ubuntu` in this example), using PowerShell: