我的 Macbook Air 上的可用空间没有被正确报告。
硬盘容量为 120GB,当我检查高清信息时,报告其中 17GB 为可用空间。
当我在 Finder 中查看时,我可以看到已用空间总计约 73GB 的文件夹列表。
所以我想知道哪些文件夹使用了丢失的 29GB。
我希望从命令行找到丢失的数据。我du -h -d 1
从根文件夹运行,它报告总共使用了 88 GB。
当我运行时,df -h
我得到的磁盘大小为 112Gi,已用空间为 96Gi,可用空间为 16Gi。
所以我看到虽然df
报告使用了 96GB 的空间,但du
只列出了 88GB 的使用情况。
我想知道哪些文件夹占用了未占用的空间。
答案1
对于df
,请看一下man df
:
-H "Human-readable" output. Use unit suffixes: Byte, Kilobyte, Megabyte, Gigabyte, Terabyte
and Petabyte in order to reduce the number of digits to three or less using base 10 for
sizes.
-h "Human-readable" output. Use unit suffixes: Byte, Kilobyte, Megabyte, Gigabyte, Terabyte
and Petabyte in order to reduce the number of digits to three or less using base 2 for
sizes.
您使用了-h
,它使用 2 为基数的大小。Finder 报告的是 10 为基数的大小。
检查输出df -H
— 您会发现它与 Finder 所说的完全匹配。