如何在 Linux 中从 DMG 文件获取元数据?

发布于 2024-09-14 12:20:14 字数 170 浏览 7 评论 0原文

我想读取 DMG 文件中可能存在的任何元数据。我不需要实际安装它,我只想读取可能存在的任何元数据(注释、时间戳、清单等)。我在 Linux 系统上工作,并且没有超级用户权限。

我读到可以通过将 DMG 文件挂载为环回文件系统来读取它。作为非特权用户有办法做到这一点吗?

感谢您的帮助,我很感激。

I would like to read the whatever metadata there might be in a DMG file. I don't need to actually install it, I just want to read any metadata (commentary, timestamp, manifest, whatever) there might be. I'm working on a Linux system, and I do not have superuser privileges.

I have read that it's possible to read a DMG file by mounting it as a loopback filesystem. Is there a way to do that as an unprivileged user?

Thanks for your help, I appreciate it.

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

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

发布评论

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

评论(2

作妖 2024-09-21 12:20:14

您可以使用 7z 首先解压 DMG 文件,然后在每个分区映像上再次解压。除了实际文件之外,还会有包含各种 Mac 特定元数据的文件。

You can use 7z to first unpack the DMG file, and then again on each partition image. Apart from the actual files there will also be files containing various Mac specific meta data.

似最初 2024-09-21 12:20:14

需要 root 权限 :(

mount -o loop -t hfsplus image.dmg /path/to/directory/you/want

dmgmount DMG 自动挂载程序是一个 nautilus 脚本

dmg2img dmg 到标准 (hfsplus) 映像磁盘文件转换工具

requires root privileges :(

mount -o loop -t hfsplus image.dmg /path/to/directory/you/want

dmgmount DMG Automounter is a nautilus script

dmg2img dmg to standard (hfsplus) image disk file convert tool

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