让64位的WSL(windows子linux系统)支持运行32位程序

Posted 黄大狗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了让64位的WSL(windows子linux系统)支持运行32位程序相关的知识,希望对你有一定的参考价值。

假设有一个新的Ubuntu WSL实例,则需要安装qemu-user-static软件包,添加i386 binfmt,启用i386体系结构,更新软件包列表,并安装一些i386软件包:

安装qemu和binfmt

sudo apt update
sudo apt install qemu-user-static
sudo update-binfmts --install i386 /usr/bin/qemu-i386-static --magic ‘x7fELFx01x01x01x03x00x00x00x00x00x00x00x00x03x00x03x00x01x00x00x00‘ --mask ‘xffxffxffxffxffxffxffxfcxffxffxffxffxffxffxffxffxf8xffxffxffxffxffxffxff‘
 
需要更新软件包列表,已添加sudo apt update

这将通过使它们通过qemu-i386-static执行来激活i386支持,并将配置文件放入其中/var/lib/binfmts/以供将来重新激活。

每次重新启动WSL并需要i386支持时,都需要重新激活此功能:

sudo service binfmt-support start

启用i386架构和软件包

sudo dpkg --add-architecture i386
sudo apt update
sudo apt install gcc:i386

  

参考:https : //github.com/Microsoft/WSL/issues/2468

转自:https://www.jianshu.com/p/3df082840b40

以上是关于让64位的WSL(windows子linux系统)支持运行32位程序的主要内容,如果未能解决你的问题,请参考以下文章

VSCode 作为 Windows Subsystem for linux (WSL) 上的 Git 编辑器

微软 WSL 重装操作系统

Windows 进程和 WSL Linux 进程之间的共享内存

如何在windows 11中安装WSLG(WSL2)

WSL(Windows上的Linux子系统)

WSL2的安装与使用-Windows与Linux双系统的新选择