
Linux du 命令 - 菜鸟教程
Linux du (英文全拼:disk usage)命令用于显示目录或文件的大小。 du 会显示指定的目录或文件所占用的磁盘空间。 -a或-all 显示目录中个别文件的大小。 -b或-bytes 显示目录或文件大小 …
du command in Linux with examples - GeeksforGeeks
2024年12月27日 · The `du` command in Linux is a powerful utility that allows users to analyze and report on disk usage within directories and files. Whether you’re trying to identify space …
How do I see du in GB instead of MB in linux? - Server Fault
2010年5月22日 · GNU du has the --block-size option: du -csh --block-size=1G . As sajb noted, omitting the block size argument will automatically scale the output (and display the unit).
du(1) — Linux manual page - man7.org
Summarize device usage of the set of FILEs, recursively for directories.
linux 中 du -sh 和 du -ch的区别 - 小鲨鱼2018 - 博客园
2024年2月25日 · [root@pc1 test1]# du -ch ## 输出了每一目录的总的大小,忽略掉对文件的统计;包括目录下子目录的大小, 220M . / dir1 530M . / dir2 6.6M./dir3/ dir001 207M . / dir3 …
du Command in Linux – Tutorial and Examples - Linux Stans
2022年12月13日 · In Linux, du stands for “disk usage” and it’s a command most often used to check the size (and other space/disk usage) of the files and directories. The du command can …
Linux 中最方便的 du(磁盘使用)命令 - Linux-Terminal.com
du 是“磁盘使用情况”的缩写,是在命令行中分析磁盘空间的主要工具。 对目录运行 du 命令,以查看每个目录占用的磁盘空间的完整分析。 每个目录将在标准输出中依次列出,因此大型目录 …
Shell 的命令 - du - 《阮一峰 Bash 脚本教程》 - 书栈网 · BookStack
2020年5月12日 · du. du命令显示某个文件或目录的磁盘使用量。 $ du filename-h参数将返回的大小显示为人类可读的格式,即显示单位为 K、M、G 等。-s参数表示总结(summarize)。-x …
du命令详解-CSDN博客
linux 中 du 命令也是查看使用空间的,但是与 df 命令不同的是 Linux du 命令是对文件和目录磁盘使用的空间的查看。 du 命令是 disk usage 的缩写。 命令格式 du [选项] 文件 常用参数 参数 …
How to use the du command -- by The Linux Information Project …
2004年8月21日 · The du (i.e., disk usage) command reports the sizes of directory trees inclusive of all of their contents and the sizes of individual files. This makes it useful for tracking down …