Ubuntu 在 Windows 上崩溃:0x80040326 Wsl 错误

Ubuntu 在 Windows 上崩溃:0x80040326 Wsl 错误

我在 Windows 上安装了 Ubuntu 22.04 应用程序。它运行良好,直到有一天它崩溃了,现在我尝试在 Windows 上启动 Ubuntu 时只得到这个错误代码。

Error: 0x80040326
Error code: Wsl/Service/0x80040326
Press any key to continue...

我正在运行 Windows Powershell 版本 2

 wsl --list --verbose
  NAME            STATE           VERSION
* Ubuntu-22.04    Running         2

我正在使用 Microsoft Office Home 10.0.22621 Build 22621

有什么想法我可以做什么?Google 没有太多关于“0x80040326”的搜索结果

安装新副本不起作用:

Installing, this may take a few minutes...
Please create a default UNIX user account. The username does not need to match your Windows username.
For more information visit: https://aka.ms/wslusers
Enter new UNIX username: xxxxx
New password:
Retype new password:
Sorry, passwords do not match.
passwd: Authentication token manipulation error
passwd: password unchanged
Try again? [y/N] y
New password:
Retype new password:
passwd: password updated successfully
Installation successful!
Error: 0x80040326
Error code: Wsl/Service/0x80040326
Press any key to continue...

答案1

我遇到了同样的问题,但刚刚解决了。

更新你的 wsl 系统。

wsl --update

答案2

Windows 更新因在后台破坏程序而臭名昭著。

解决此问题的最佳方法是:

  1. 以管理员模式打开 PowerShell 或命令提示符窗口
  2. 运行命令wsl.exe --update
  3. 再次运行wsl.exe,看看是否可以访问默认的 WSL 发行版,否则请重新启动笔记本电脑或台式机,这样就可以解决问题

或者,您也可以使用命令回滚内核版本以建立工作子系统wsl.exe --update --rollback

答案3

昨天更新 Windows 后遇到了同样的问题。

wsl --update

正如其他人所说的那样,这有效,但是在运行命令后尝试启动 wsl 时它仍然崩溃。运行 wsl 更新后大约一分钟开始工作,不确定是否有一些后台进程正在运行或其他什么...

答案4

对于在 Microsoft Store 下载时遇到问题的用户:

wsl --update --web-download

将从 GitHub 下载。

相关内容