在64位的linux中运行32位的应用程序

常规做法,先添加32bit架构:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
然后,你再安装或者直接运行你的32位程序。
Always believe that good things will come.
原文地址:https://www.cnblogs.com/elvirangel/p/6771649.html