使用像ncdu
这样的工具可以通过一个漂亮的命令行界面轻松确定磁盘使用情况。
sudo apt install ncdu
为了避免将Windows的所有目录都包含在内,我们需要排除/mnt
目录。
sudo ncdu / --exclude /mnt
在Windows的“应用和功能”中,它列出了Ubuntu
占用1.92 GB
ncdu
报告1.7 GiB(约1.82GB),与Windows报告的非常接近。
我无法通过Windows找到Bash on Ubuntu on Linux
占用多少空间,但我可以通过运行sudo ncdu / --exclude /mnt
来查看它使用了多少空间。
ncdu --exclude=/mnt
。 - BJury--exclude /mnt
还是--exclude=/mnt
似乎都不能真正排除/mnt
,这些都是它开始访问的第一项。 - Todd Sewell/c
和/mnt
,使用命令 ncdu --exclude /c --exclude /mnt
。 - Josh Russo--exclude /mnt
对我来说没有起作用,但那是因为当前工作目录本身就在 /mnt
内。在运行 cd /
后,它开始起作用了。 - Ghost4Man