mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-19 10:01:30 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
41
tldr/windows/wsl
Normal file
41
tldr/windows/wsl
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# wsl
|
||||
|
||||
> Manage the Windows Subsystem for Linux.
|
||||
> More information: <https://learn.microsoft.com/windows/wsl/reference>.
|
||||
|
||||
- Start a Linux shell (in the default distribution):
|
||||
|
||||
`wsl {{shell_command}}`
|
||||
|
||||
- Run a Linux command without using a shell:
|
||||
|
||||
`wsl --exec {{command}} {{command_arguments}}`
|
||||
|
||||
- Specify a particular distribution:
|
||||
|
||||
`wsl --distribution {{distribution}} {{shell_command}}`
|
||||
|
||||
- List available distributions:
|
||||
|
||||
`wsl --list`
|
||||
|
||||
- Export a distribution to a `.tar` file:
|
||||
|
||||
`wsl --export {{distribution}} {{path o\distro_file.tar}}`
|
||||
|
||||
- Import a distribution from a `.tar` file:
|
||||
|
||||
`wsl --import {{distribution}} {{path o\install_location}} {{path/to/distro_file.tar}}`
|
||||
|
||||
- Change the version of wsl used for the specified distribution:
|
||||
|
||||
`wsl --set-version {{distribution}} {{version}}`
|
||||
|
||||
- Shut down Windows Subsystem for Linux:
|
||||
|
||||
`wsl --shutdown`
|
||||
Reference in New Issue
Block a user