Win10上误删Linux子系统的解决方法

最近在折腾Win10里的WSL的时候,不小心把WSL的目录删除了,然后无论如何再也装不上去。运行bash命令会报以下错误:

C:\>bash
指定的网络名不再可用。

百度、Google均无解,于是想到使用英文去搜索,终于找到了下面这篇帖子:

https://www.reddit.com/r/bashonubuntuonwindows/comments/aqeu24/i_accidentally_deleted_my_installed_wsl_folder/

以下是解决方法:

C:\>wslconfig /list
适用于 Linux 的 Windows 子系统:
Ubuntu-18.04 (默认)

C:\>wslconfig /u Ubuntu-18.04
正在注销...

C:\>wslconfig /list
适用于 Linux 的 Windows 子系统没有已安装的分发版。
可以通过访问 Microsoft Store 来安装分发版:
https://aka.ms/wslstore

此时,运行bash命令也正常了

C:\>bash
适用于 Linux 的 Windows 子系统没有已安装的分发版。
可以通过访问 Microsoft Store 来安装分发版:
https://aka.ms/wslstore

终于可以正常安装WSL了。

分享