How to get i386 binaries work on Ubuntu
2021-03-30 05:15:47 Author: acassis.wordpress.com(查看原文) 阅读量:166 收藏

Probably you already executed the procedure to include i386 support to Linux:

$ sudo dpkg --add-architecture i386
$ apt-get update
$ sudo apt-get update
$ sudo apt-get install libc6-i386

Even yet your application still not running:

$ ./diehard
bash: ./diehard: No such file or directory

You can run this command to show the needed libraries:

$ objdump -p ./diehard | grep NEEDED
NEEDED libf2c.so.0
NEEDED libm.so.5
NEEDED libc.so.5

文章来源: https://acassis.wordpress.com/2021/03/29/how-to-get-i386-binaries-work-on-ubuntu/
如有侵权请联系:admin#unsafe.sh