我已经使用 WSL2 近一年了,并且始终能够毫无问题地从中运行 Windows 工具。
今天我注意到我再也无法这样做了:
mark@L-R910LPKW:~$ alias npp
alias npp='/mnt/c/Program\ Files/Notepad++/notepad++.exe'
mark@L-R910LPKW:~$ ls -l /mnt/c/Program\ Files/Notepad++/notepad++.exe
-r-xr-xr-x 1 mark mark 6629712 Apr 4 13:58 '/mnt/c/Program Files/Notepad++/notepad++.exe'
mark@L-R910LPKW:~$ npp
-bash: /mnt/c/Program Files/Notepad++/notepad++.exe: cannot execute binary file: Exec format error
mark@L-R910LPKW:~$
而且无论我尝试运行哪个 Windows 工具,它都不会运行任何工具。
在互联网上快速搜索后,我发现了/proc/sys/fs/binfmt_misc/WSLInterop
,但我无法创建它:
mark@L-R910LPKW:~$ sudo -i
-bash: /mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe: cannot execute binary file: Exec format error
root@L-R910LPKW:~# id
uid=0(root) gid=0(root) groups=0(root)
root@L-R910LPKW:~# echo 1 > /proc/sys/fs/binfmt_misc/WSLInterop
-bash: /proc/sys/fs/binfmt_misc/WSLInterop: Permission denied
root@L-R910LPKW:~#
无论如何,我认为这是一条过时的信息,因为我可以status
在那里看到一个文件,并且:
root@L-R910LPKW:~# cat /proc/sys/fs/binfmt_misc/status
enabled
root@L-R910LPKW:~#
我认为 Windows 的某种更新(我们的工作笔记本电脑会自动更新)破坏了它。
最后,我的详细资料如下:
root@L-R910LPKW:~# uname -a
Linux L-R910LPKW 5.15.90.1-microsoft-standard-WSL2 #1 SMP Fri Jan 27 02:56:13 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
root@L-R910LPKW:~#
任何帮助是极大的赞赏。
答案1
据我所知,这是 Windows 11 中启用 systemd 时 WSL2 的一个“已知问题”……即
/etc/wsl.conf 包含
[boot]
systemd=true
您可以删除它,或者:
检查内容/存在性/usr/lib/binfmt.d/WSLInterop.conf
- 它可能不存在 - 因此
首先,运行这个
sudo sh -c 'echo :WSLInterop:M::MZ::/init:PF > /usr/lib/binfmt.d/WSLInterop.conf'
或者如果你是root
echo :WSLInterop:M::MZ::/init:PF > /usr/lib/binfmt.d/WSLInterop.conf
然后
sudo systemctl restart systemd-binfmt
在我的系统上测试并运行(没有意识到它停止工作了,但是我很少在 WSL 中使用 Windows 命令)
如果仍然不起作用(据报道在某些系统上无法完全工作)
wsl --shutdown
然后回到 WSL,你应该很好