https://blog.csdn.net/weixin_44825912/article/details/136565219
问题如下:
wsl安装成功,但打开时出现多行报错无法使用。
PS C:\WINDOWS\system32> wsl
<3>WSL (8) ERROR: CreateProcessParseCommon:754: getpwuid(0) failed 2
Processing fstab with mount -a failed.
<3>WSL (8) ERROR: CreateProcessEntryCommon:331: getpwuid(0) failed 2
<3>WSL (8) ERROR: CreateProcessEntryCommon:502: execvpe /bin/sh failed 2
<3>WSL (8) ERROR: CreateProcessEntryCommon:505: Create process not expected to return
这是因为我的电脑上安装过Docker Desktop,而Ubuntu和它在一起会出现这个bug。此时默认的发行版是Docker-desktop-data,需要我们手动更改到Ubuntu-版本号。
解决方案:
输入wsl --list --verbose命令查看,会发现发行版默认为docker-desktop-data。
接着输入wsl -s Ubuntu-22.04更改发行版为Ubuntu-版本号。
再次查看,发现已经更改成功,并能使用wsl命令进入。
————————————————
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/weixin_44825912/article/details/136565219
标签:CreateProcessEntryCommon,Ubuntu,wsl,WSL,failed,ERROR,docker,ubuntu From: https://www.cnblogs.com/antordragon/p/18093648