├── .github └── workflows │ └── gh-page.yml ├── .gitignore ├── BUILD.md ├── LICENSE ├── README.md ├── docs ├── advanced │ ├── copy-distro.md │ └── install-from-rootfs.md ├── devsetup │ ├── dotnet.md │ ├── golang.md │ ├── multiplexer.md │ ├── openjdk.md │ └── ruby.md ├── firststep │ ├── bridge.md │ ├── docker.md │ ├── images │ │ ├── wsl-integration.png │ │ └── wsl-readme.gif │ ├── install.md │ ├── networkdrive.md │ ├── sshkey.md │ ├── ubuntu.md │ ├── vmmem.md │ ├── vscode.md │ └── winterm.md ├── images │ └── favicon.png ├── index.md └── troubleshoot │ └── timesync.md └── mkdocs.yml /.github/workflows/gh-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/.github/workflows/gh-page.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | site 2 | -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ./docs/index.md -------------------------------------------------------------------------------- /docs/advanced/copy-distro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/advanced/copy-distro.md -------------------------------------------------------------------------------- /docs/advanced/install-from-rootfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/advanced/install-from-rootfs.md -------------------------------------------------------------------------------- /docs/devsetup/dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/devsetup/dotnet.md -------------------------------------------------------------------------------- /docs/devsetup/golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/devsetup/golang.md -------------------------------------------------------------------------------- /docs/devsetup/multiplexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/devsetup/multiplexer.md -------------------------------------------------------------------------------- /docs/devsetup/openjdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/devsetup/openjdk.md -------------------------------------------------------------------------------- /docs/devsetup/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/devsetup/ruby.md -------------------------------------------------------------------------------- /docs/firststep/bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/bridge.md -------------------------------------------------------------------------------- /docs/firststep/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/docker.md -------------------------------------------------------------------------------- /docs/firststep/images/wsl-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/images/wsl-integration.png -------------------------------------------------------------------------------- /docs/firststep/images/wsl-readme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/images/wsl-readme.gif -------------------------------------------------------------------------------- /docs/firststep/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/install.md -------------------------------------------------------------------------------- /docs/firststep/networkdrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/networkdrive.md -------------------------------------------------------------------------------- /docs/firststep/sshkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/sshkey.md -------------------------------------------------------------------------------- /docs/firststep/ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/ubuntu.md -------------------------------------------------------------------------------- /docs/firststep/vmmem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/vmmem.md -------------------------------------------------------------------------------- /docs/firststep/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/vscode.md -------------------------------------------------------------------------------- /docs/firststep/winterm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/firststep/winterm.md -------------------------------------------------------------------------------- /docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/images/favicon.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/troubleshoot/timesync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/docs/troubleshoot/timesync.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wslhub/wsl-firststep/HEAD/mkdocs.yml --------------------------------------------------------------------------------