Skip to content

Commit c3eecb4

Browse files
authored
Update install-on-server.md
Fix: Correct tar extraction commands in WSL server install guide
1 parent 2a525df commit c3eecb4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

WSL/install-on-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Now that you've downloaded a Linux distribution, in order to extract its content
6464
1. List the contents of the appx using tar.exe:
6565

6666
```cmd
67-
> tar -tf .\debian.appx
67+
> tar -xf .\debian.appx
6868
DistroLauncher-Appx_1.12.2.0_ARM64.appx
6969
DistroLauncher-Appx_1.12.2.0_scale-100.appx
7070
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
8080
```powershell
8181
$debianWSLPath = Join-Path -Path $env:LocalAppData -ChildPath DebianWSL
8282
New-Item -Path $debianWSLPath -ItemType Directory | Out-Null
83-
Expand-Archive -Path ".\DistroLauncher-Appx_1.12.2.0_x64.appx" -DestinationPath $debianWSLPath
83+
tar -xf .\DistroLauncher-Appx_1.12.2.0_x64.appx -C "$env:USERPROFILE\AppData\Local\DebianWSL"
8484
```
8585
8686
1. Add your Linux distribution path to the Windows environment PATH (`C:\Users\Administrator\Ubuntu` in this example), using PowerShell:

0 commit comments

Comments
 (0)