计算hdiutil的压缩比

发布于 2024-08-07 02:19:43 字数 101 浏览 4 评论 0原文

在我的应用程序中,我使用 Apple 的 hdiutil 命令行实用程序来创建文件夹/卷的压缩磁盘映像 (DMG)。有没有办法计算给定源路径的压缩大小?我已经检查了手册页,那里什么也没有。

In my app I'm using Apple's hdiutil command line utility to create compressed disk images (DMGs) of folders/volumes. Is there any way to calculate the compressed size of a given source path? I've already checked in the man pages, nothing there.

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

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

发布评论

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

评论(3

暖心男生 2024-08-14 02:19:43

您能否将磁盘映像的大小与 df(报告卷的大小)或 du(报告目录中文件的大小)报告的大小进行比较?

Can you just compare the size of the disk image vs the size reported by either df (reporing the size of the volume) or du (reporting the size of files in a directory)?

深海夜未眠 2024-08-14 02:19:43

hdiutil imageinfo /PATH/TO/IMAGE | hdiutil imageinfo /PATH/TO/IMAGE | grep '压缩比'

示例输出:

Compressed Ratio: 0.14393602843180808

表示磁盘映像是原始大小的 14%。然而,这是在仅包含文本文件的文件夹上使用标准 zlib 压缩 (UDZO),因此压缩量比正常情况高。

hdiutil imageinfo /PATH/TO/IMAGE | grep 'Compressed Ratio'

Example Output:

Compressed Ratio: 0.14393602843180808

Meaning the disk image is 14% of the size of the original. This is using the standard zlib compression (UDZO) on a folder containing just text files however, so the compression amount is much higher than normal.

绅士风度i 2024-08-14 02:19:43

选择杰米·梅西——他的答案是正确的。使用 du -s 获取树的大小,将其与 .dmg 文件的大小进行比较。

Choose Jamie Macey -- his answer is the right one. Use du -s to get your tree size, compare it to the size of the .dmg file.

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