由于IDA这款软件是32bit的软件,所以64位系统需要首先安装32bit支持
sudoapt-getinstalllibc6:i386
sudoapt-getinstalllib32stdc++6
sudoapt-getinstalllib32z1
其次,还有一些32bit的依赖库
例如运行idaq64的时候会
idaq64: error while loading shared libraries: libgobject-2.0.so.0: cannot open shared object file: No such file or directory
,那么直接安装
sudo apt-get install libglib2.0-0:i386
仍然会有错:
idaq64: error while loading shared libraries: libX11.so.6: cannot open shared object file: No such file or directory
安装:
sudo apt-get install libx11-6:i386至此,idal64 可以运行 原文链接:https://www.f2er.com/ubuntu/353270.html