sudo dpkg --add-architecture i386命令用于在基于Debian的Linux发行版(如Ubuntu)上添加额外的软件架构支持。默认情况下,系统可能仅配置为支持其原生架构(如amd64对于64位系统)。通过执行此命令,用户可以启用对32位(i386)架构软件包的支持,允许用户安装和管理这些架构的软件包。
dpkg --add-architecture i386 && apt-get update && > apt-get install wine32
发布于 2021-03-18 13:55 写下你的评论... 打开知乎App 在「我的页」右上角打开扫一扫 其他扫码方式:微信 下载知乎App 开通机构号 无障碍模式 验证码登录 密码登录 中国+86 其他方式登录 未注册手机验证后自动登录,注册即代表同意《知乎协议》《隐私保护指引》...
@adamdharrisonimplemented the arch tuple scheme using clang way as a reference, looking atclang documentationi386 seems to be an arch of its own so I wonder if instead ofx86this should just bei386since there is alsoi686 i386, i486 and i686 are all the same instruction set with different e...
Add support for architecture i386. Contribute to mforkel/docker-ce-i386 development by creating an account on GitHub.
Architecture: source i386 Version: 21-12 Distribution: unstable Urgency: low Maintainer: Bdale Garbee <bd...@gag.com> Changed-By: Bdale Garbee <bd...@gag.com> Description: pforth - portable Forth interpreter Closes: 731651 Changes: ...
set(__arch "i386") endif() find_program(DPKG_CMD dpkg) if(NOT DPKG_CMD) if(CMAKE_SIZEOF_VOID_P EQUAL 8) set(__arch "amd64") else() set(__arch "i386") endif() else () execute_process(COMMAND "${DPKG_CMD}" --print-architecture OUTPUT_VARIABLE __arch OUTPUT_STRIP_TRAILING_WH...
{OS: "linux", Architecture: "arm64", Variant: "v8"}, "i386": {OS: "linux", Architecture: "386"}, "mips64le": {OS: "linux", Architecture: "mips64le"}, "ppc64le": {OS: "linux", Architecture: "ppc64le"}, "riscv64": {OS: "linux", Architecture: "riscv64"}, "s390x":...
Continued from nodejs/node-v0.x-archive#2862. // @Fishrock123 @isaacs @jasnell @feross os.arch() returns the architecture of the Node.js process, not the operating system. This was surprising to me and many other Node.js users. I don't r...