Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ElMoix/WSL
A walkthrough on how to install WSL (Windows Subsystem for Linux) on W10
https://github.com/ElMoix/WSL
walkthrough windows-10 wsl wsl-debian wsl-installation wsl-setup
Last synced: 3 months ago
JSON representation
A walkthrough on how to install WSL (Windows Subsystem for Linux) on W10
- Host: GitHub
- URL: https://github.com/ElMoix/WSL
- Owner: ElMoix
- Created: 2023-12-20T17:56:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-20T18:37:30.000Z (about 1 year ago)
- Last Synced: 2024-07-30T21:04:40.679Z (6 months ago)
- Topics: walkthrough, windows-10, wsl, wsl-debian, wsl-installation, wsl-setup
- Homepage:
- Size: 513 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HOW TO INSTALL WSL for Windows 10 (also works on W11)
## 1 STEP
```
On the Windows 10 search bar search for 'Microsoft Store' and open it.
```
![1](./images/ms_store_app.png)
## 2 STEP
```
Search for "Windows Subsystem for Linux" and click on "Install"
```
![2](./images/ms_store_wsl.png)
## 3 STEP
```
On the Windows 10 search bar search for 'Windows Features' and open it.
```
![3](./images/features_win10.png)
## 4 STEP
```
Enable 2 features:
- Windows Subsystem for Linux
- Virtual Machine Platform
```
![4](./images/enabled_features.png)
## 5 STEP
```
Click on install, wait and restart the PC
```
![5](./images/installed_features.png)
## 6 STEP
```
Open the Windows Terminal (cmd) and check if WSL is installed correctly by executing:
wsl -v
```
![6](./images/check_wsl.png)
## 7 STEP
```
Check for all possible installations by executing:
wsl --list --online
```
![7](./images/list_wsl_os.png)
## 8 STEP
```
Install your favorite OS by executing:
wsl --install -d {OS}
```
![8](./images/install_os_wsl.png)
## 9 STEP
```
On the Windows 10 search bar search for 'WSL' and open it.
```
![9](./images/open_wsl.png)
## 10 STEP
```
Check if all it's OK
```
![10](./images/check_os_wsl.png)# ERR 1
```
Sometimes with the basic user you don't have enough permissions to execute the 'ping' command.
You may execute:
sudo setcap cap_net_raw+ep /bin/ping
```
![11](./images/solved_ping.png)