如何在solaris中查看exe的内容
我的 Solaris 服务器上有一个 exe 文件(例如naming.exe)。 我想查看exe文件的内容。 是否可以 ?
I have an exe file(eg naming.exe) on my Solaris server.
I want to see the contents of the exe file.
Is it possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅 strings 命令,该命令将从文件中提取可读文本。有关详细信息,请参阅维基百科上的文章。
See the
strings
command which will extract readable text from a file. See the article on wikipedia for more about it.虽然 Solaris 和 Unix 一般来说不太关心后缀,尤其是可执行文件。“.exe”在那里不是常见的文件后缀,但对我来说它看起来像是 Windows 的后缀。
首先运行
filenaming.exe
来了解它是什么类型的文件。Although Solaris and Unix in general doesn't care that much about suffixes, especially for executables.".exe" isn't a common file suffix there, it looks like a Windows thing to me.
Start by running
file naming.exe
to get an idea about what kind of file it is.通常,除了简单的字符串之外,数据也会被打包进来。 (例如,软件安装程序有时会在可执行文件中嵌入有用的跨平台数据文件)。在 Linux 上,您可以使用 cabextract 提取此文件。如果它尚未在 Solaris 上运行,我看不出有什么理由将其移植到 Solaris 会很困难。
Often data beyond simply strings is packed in too. (For example software installers sometimes have useful cross-platform data files embedded within executable files). On linux you can extract this using cabextract. I can't see any reason why porting this to Solaris would be hard if it isn't already working on Solaris.