From 426e40e49f46df5bffd4169d6e125b145bfbf0d8 Mon Sep 17 00:00:00 2001 From: Roman Dodin Date: Sat, 7 Dec 2024 14:51:05 +0100 Subject: [PATCH] 0.60.1 release notes --- docs/rn/0.60.md | 7 +++++++ docs/windows.md | 9 +++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/rn/0.60.md b/docs/rn/0.60.md index c5a4d9aea..0e6e6732e 100644 --- a/docs/rn/0.60.md +++ b/docs/rn/0.60.md @@ -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 diff --git a/docs/windows.md b/docs/windows.md index 2a0948a8e..91a5d7e33 100644 --- a/docs/windows.md +++ b/docs/windows.md @@ -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].