查看目录占用空间du -sh和磁盘df 区别
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
查看每个目录占用的空间
在根目录的情况下:root@sam9x25-linux: du -sh *//则会显示每个此文件夹下面的所有目录使用情况:
root@sam9x25-linux:~ du -sh *
1.9M app
3.9M backup
44.0K cfg
8.0K default
936.0K font
168.0K lib
1.4M log
744.0K logfile
8.0K other
5.6M sys
0 test
72.0K tmn698
3.9M update
8.0K usr
2 也可以看某个目录的使用情况: /home/log/compress_write_log_test/ 指定目录
root@sam9x25-linux:~ du -sh /home/log/compress_write_log_test/
1.2M /home/log/compress_write_log_test/root@sam9x25-linux:~
df是查看磁盘剩余空间和使用率的命令,它可以列出所有分区的使用情况;而 du是查看目录的使用情况,侧重点不一样。
上面分别使用了,df 和du命令。可以看到,df列出磁盘总容量、可用容量、使用%、接入点等信息,而du只是合计磁盘的使用量。-h选项表示人性化显示格式。
1、df 命令用于查询整个文件系统的使用情况;du命令只统计目录或文件使用的空间(对于目录,递归统计)。所以df查询到的空间要大于du。
2、df命令的实现是通过调用函数statfs查询文件系统的信息,这些信息是保存在文件系统中的;du是通过opendir()、stat()函数查询文件大小,累加而出结果。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献9条内容
所有评论(0)