Skip to content

Commit 650e3ec

Browse files
committed
Add WSL
1 parent 25a7bb3 commit 650e3ec

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

wsl.md

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,31 @@
11
# Windows Subsystem for Linux
22

3-
The tools we will be using are not supported for Windows. Windows users can install Windows Subsystem for Linus (WSL)
4-
to get the tools working. The instructions for installing WSL can be found here:
5-
[https://learn.microsoft.com/en-us/windows/wsl/install](https://learn.microsoft.com/en-us/windows/wsl/install)
3+
The tools we will be using are not supported for Windows. Windows users can install Windows Subsystem for Linux (WSL) to get the tools working. The instructions for installing WSL can be found here: [https://learn.microsoft.com/en-us/windows/wsl/install](https://learn.microsoft.com/en-us/windows/wsl/install)
64

7-
Once WSL is installed you can follow the rest of the instructions from the WSL terminal.
5+
## Enable WSL and Install Ubuntu 24.04
86

7+
1. **Enable the Windows Subsystem for Linux**:
8+
- Open PowerShell as Administrator and run the following command:
9+
10+
```shell
11+
wsl --install
12+
```
13+
14+
2. **Set WSL Version to 2** (if not already set):
15+
- In PowerShell, execute:
16+
17+
```shell
18+
wsl --set-default-version 2
19+
```
20+
21+
- This sets WSL 2 as the default version for any newly installed distributions.
22+
23+
3. **Install Ubuntu 24.04**:
24+
- Open Microsoft Store and search for "Ubuntu 24.04".
25+
- Click on "Get" or "Install" to download and install it.
26+
27+
4. **Initialize Ubuntu 24.04**:
28+
- Once installed, launch Ubuntu 24.04 from the Start menu.
29+
- Follow the on-screen instructions to complete the setup, which includes creating a user account.
30+
31+
Once WSL and Ubuntu 24.04 are installed, you can follow the rest of the instructions from the WSL terminal.

0 commit comments

Comments
 (0)