Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WSL/install-on-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down