我尝试使用以下方法将 32 位(i386)架构添加到我的 Debian Bullseye:
sudo dpkg --add-architecture i386
但它没有给我任何错误或没有成功的信息。当我使用
sudo dpkg --print-architecture
仍然只给出 am64
我已阅读 add 32 bit architecture question and answer for Ubuntu。命令
ls /etc/dpkg/dpkg.cfg.d/
给出:
pkg-config-hook-config
当我查看文件时,它写道:
post-invoke=if { test "$DPKG_HOOK_ACTION" = add-architecture || test "$DPKG_HOOK_ACTION" = remove-architecture; } && test -x /usr/share/pkg-config-dpkghook; then /usr/share/pkg-config-dpkghook update; fi
所以我检查了/usr/share/中是否有一个名为pkg-config-dpkghook的文件,但是没有,那里没有这样的文件。
我是否必须用multiarch替换文件名,如果不是我该怎么办?
显示系统的主要架构。
要查看系统上配置的任何其他架构,您需要运行
这应该
i386
在您的情况下显示。