From 2a12e66077a154560e43619a917f5302687ea42c Mon Sep 17 00:00:00 2001 From: Juan Pedro Bretti Mandarano Date: Mon, 1 Sep 2025 11:47:09 +0200 Subject: [PATCH] Fix typo in WSL configuration file name (#531) There is no documentation that file `/etc/wsl2.conf` does exist. According to Microsoft documentation, it is called `/etc/wsl.conf`. See https://learn.microsoft.com/en-us/windows/wsl/wsl-config for reference. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59383d9..ca8c70f 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Credit goes to [Guillaume - The Parallel Interface blog](https://www.paralint.co sudo usermod -a -G kvm ${USER} ``` -2. Add necessary flags to `/etc/wsl2.conf` to their respective sections. +2. Add necessary flags to `/etc/wsl.conf` to their respective sections. ``` [boot] command = /bin/bash -c 'chown -v root:kvm /dev/kvm && chmod 660 /dev/kvm'