du
命令是disk usage
的缩写,它的主要功能是用来估计文件或目录在磁盘上的空间使用情况。这个命令在管理磁盘空间,特别是在确定哪些文件占用了大量磁盘空间时非常有用。
du
命令在所有主流的Linux发行版中都是可用的,包括但不限于Ubuntu, Debian, Fedora, CentOS, RHEL等。如果你发现你的系统中没有这个命令,你可以使用你的包管理器来安装它。例如,在基于Debian的系统中,你可以使用apt-get
命令来安装:
[linux@bashcommandnotfound.cn ~]$ sudo apt-get install coreutils
在基于RHEL的系统中,你可以使用yum
或dnf
命令来安装:
[linux@bashcommandnotfound.cn ~]$ sudo yum install coreutils
或者
[linux@bashcommandnotfound.cn ~]$ sudo dnf install coreutils
du
命令的基本语法如下:
du [OPTION]... [FILE]...
du
命令有很多选项,这里列出一些最常用的:
选项 | 说明 |
---|---|
-a | 列出所有文件和目录的大小 |
-h | 以人类可读的格式(K,M,G)显示大小 |
-s | 只显示总计 |
-c | 除了显示各个文件和目录的大小,还显示总计 |
–max-depth=N | 只显示N层深度的目录和文件大小 |
[linux@bashcommandnotfound.cn ~]$ du
[linux@bashcommandnotfound.cn ~]$ du -h
[linux@bashcommandnotfound.cn ~]$ du /path/to/directory
[linux@bashcommandnotfound.cn ~]$ du -a
[linux@bashcommandnotfound.cn ~]$ du -s
[linux@bashcommandnotfound.cn ~]$ du -s /path/to/directory
[linux@bashcommandnotfound.cn ~]$ du -ah
[linux@bashcommandnotfound.cn ~]$ du -ah /path/to/directory
[linux@bashcommandnotfound.cn ~]$ du -ac
[linux@bashcommandnotfound.cn ~]$ du -ac /path/to/directory
[linux@bashcommandnotfound.cn ~]$ du -ach
[linux@bashcommandnotfound.cn ~]$ du -ach /path/to/directory
[linux@bashcommandnotfound.cn ~]$ du --max-depth=1
[linux@bashcommandnotfound.cn ~]$ du --max-depth=1 /path/to/directory
[linux@bashcommandnotfound.cn ~]$ du -h --max-depth=1
du
命令的结果可能会受到文件系统的块大小影响,因此它提供的是估计值,而不是精确值。du
命令时遇到bash: du: command not found
的错误,你可能需要安装coreutils
包。更多详细内容可以参考:
linux入门学习教程 - Linux入门自学网
Linux du命令用法详解:如何显示目录或文件占用大小,分析磁盘使用情况(附实例)