Skip to content

Commit

Permalink
0.60.1 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Dec 7, 2024
1 parent c25b2f4 commit 426e40e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/rn/0.60.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,10 @@ Please meet [WSL-Containerlab](https://github.com/srl-labs/wsl-containerlab).
* support for the interactive mode of the drawio integration #2291 by @FloSch62
* fixes and improvements to the installation scripts #2273 #2273
* enabled Netconf on SR Linux #2322

## Patches

### 0.60.1

* do not check bind paths when performing `destroy` #2334 #2337
* setup docker/moby 26.1.5 #2336
9 changes: 5 additions & 4 deletions docs/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,19 @@ wsl -l -v
On this system we already have a WSL VM with Ubuntu OS running, which was created when we installed WSL on Windows. If instead of a list of WSL VMs you get an error, you need to install WSL first:

```bash title="Installing WSL on Windows 11"
wsl --install
wsl --install -d Debian #(1)!
```

Installing WSL on Windows 11 will by default install the Ubuntu distribution. While it is perfectly fine to use it, we prefer Debian, so let's remove Ubuntu and install Debian instead:
1. Installing a new WSL system will prompt you to choose a username and password.

If you performed a default WSL installation before, you are likely running an Ubuntu, and while it is perfectly fine to use it, we prefer Debian, so let's remove Ubuntu and install Debian instead:

```bash title="Removing Ubuntu and installing Debian"
wsl --unregister Ubuntu #(1)!
wsl --install -d Debian #(1)!
wsl --install -d Debian
```

1. Unregistering a WSL VM will remove the VM. You should reference a WSL instance by the name you saw in the `wsl -l -v` command.
2. Installing a new WSL system will prompt you to choose a username and password.

Once the installation is complete, you will enter the WSL shell, which is a regular Linux shell[^2].

Expand Down

0 comments on commit 426e40e

Please sign in to comment.