以编程方式提取 .deb 包

发布于 2024-09-19 19:01:17 字数 126 浏览 8 评论 0原文

我有 .deb 包,我需要以编程方式提取其内容。但是,我无法找到有关该主题的任何资源,例如 .deb 包格式规范,这将使我更多地了解如何在不对整个问题进行逆向工程的情况下解决问题。

有什么想法吗?

I have .deb package whose contents I need to extract in a programmatic way. However, I am not able to find any resources on the topic, such as .deb package format specification, which would give me some more idea how to approach the problem without going and reverse engineering the whole thing.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

栀子花开つ 2024-09-26 19:01:18

实际上很简单。

ar xv <name of deb file>

要从 C 内部调用,您可以使用 system

system("ar xv <name of deb file>");

Quite simple, actually.

ar xv <name of deb file>

To call from within C, you could use system:

system("ar xv <name of deb file>");
茶底世界 2024-09-26 19:01:18

如果您找不到这样的库(我也没有),并且无法诉诸运行系统命令,您始终可以实现自己的库来读取 ar 档案。 ar 文件格式并不是很复杂。

If you don't find a library for this (I didn't, either), and cannot resort to running system commands, you can always implement your own to read ar archives. The ar file format isn't terribly complicated.

很快妥协 2024-09-26 19:01:18

.deb 包格式的设计目标之一是使用现有工具和/或库轻松提取。顶层结构确实是一个 ar 文件,但在其中,您会发现另一层结构,传统上是一对 tar 文件。有关更多文档,请参阅 http://en.wikipedia.org/wiki/Deb_(file_format)

如果您找不到现有的库,您可能可以使用 GNU ar 源代码来构建自己的库,我希望有 ar / tar / cpio / 的通用库。你。

One of the design goals for the .deb package format was to make it easy to extract using existing tools and/or libraries. The top-level structure is indeed an ar file, but inside that, you will find another level of structure, which is traditionally a pair of tar files. For more documentation, see e.g. http://en.wikipedia.org/wiki/Deb_(file_format)

You can probably use the GNU ar sources to build a library of your own if you cannot find an existing library. I would expect there to be general libraries for ar / tar / cpio / what have you.

謸气贵蔟 2024-09-26 19:01:18

我刚刚看到 libarchive 支持 ar 格式,以及大量其他人的。

I just saw libarchive supports the ar format, along with a ton of others.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文