计算hdiutil的压缩比
在我的应用程序中,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您能否将磁盘映像的大小与 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)?
hdiutil imageinfo /PATH/TO/IMAGE | hdiutil imageinfo /PATH/TO/IMAGE | grep '压缩比'
示例输出:
表示磁盘映像是原始大小的 14%。然而,这是在仅包含文本文件的文件夹上使用标准 zlib 压缩 (UDZO),因此压缩量远比正常情况高。
hdiutil imageinfo /PATH/TO/IMAGE | grep 'Compressed Ratio'
Example Output:
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.
选择杰米·梅西——他的答案是正确的。使用 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.