Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个 .exe 文件,我希望它在不使用 wine 工具的情况下在 Linux 中运行。
我想转换 PE-> ELF。
谁能帮助如何以编程方式做到这一点?
谢谢, Sujitha.kv
这是不可能的,因为它是一个完全不同的操作系统!
唯一的方法是让它通过像 Wine 这样的程序运行
您基本上需要从 EXE 中删除所有有趣的代码部分,但没有 PE 特定信息,然后将代码重新组合并重新链接到 ELF 文件中。这将需要一些逆向工程和大量的手动工作。
这将非常困难,所以我建议您简单地使用 WINE。