是否有一种软件可以将 windows 可执行文件转换为 linux 可执行文件而不是在 linux(wine) 中模拟 windows api?
最佳答案
如果 Windows exe 实际上是 C#(或其他 .net)字节码,您也许可以使用 mono 运行它。您可以使用"file"命令进行检查
$ file hello.exe
hello.exe: PE32 executable for MS Windows (console) Intel 80386 32-bit Mono/.Net assembly
除此之外,它要么是 Wine,要么是重写应用程序,就像这里其他人所建议的那样。
关于windows exe 到 linux exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1619094/