Win10 Ubuntu子系统(内嵌ubuntu18.04)运行32bit Linux原生程序 解决Exec format error错误

Win10 Ubuntu子系统(内嵌ubuntu18.04)运行32bit Linux原生程序报错:442: ./install.sfx.4064: Exec format error
通过readelf -a j2sdk-1_4_2_19-linux-ia64.bin 检查程序导出表发现问题readelf 命令报错:Not an ELF file - it has the wrong magic bytes at the start 初步确定问题来源,子系统不支持原生linux文件头
解决方式添加xxx形式文件头支持

sudo apt update
sudo apt install qemu-user-static
sudo update-binfmts --install i386 /usr/bin/qemu-i386-static --magic '\x7fELF\x01\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x03\x00\x01\x00\x00\x00' --mask '\xff\xff\xff\xff\xff\xff\xff\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xf8\xff\xff\xff\xff\xff\xff\xff'

你可能感兴趣的:(linux,ubuntu,docker,shell,小程序)