df displays the amount of disk space available on the file system containing each file nameargument. If no file name is given, the space available on all currently mounted file systems is shown. du du的英文为:disk usage,含义是磁盘空间使用情况,功能是逐级进入指定目录的每一个子目录并显示该目录...
du(disk usage) 命令用于计算文件和目录占据的磁盘空间。它可以用来查看单个文件、目录或整个文件系统的磁盘使用情况: #查看当前目录及其子目录占用的磁盘空间总量 du -sh * #查看当前目录下所有文件和目录的详细磁盘使用情况 du -h #查看指定目录的磁盘使用情况,包括子目录的总计 du -sh /path/to/directory #统...
[root@VM-24-15-centos d5k]# fio -filename=/home/data -direct=1 -iodepth 1 -thread -rw=randrw -rwmixread=70 -ioengine=psync -bs=16k -numjobs=2 -runtime=60 -group_reporting -name=mytest -ioscheduler=noop -size=1Gmytest: (g=0): rw=randrw, bs=(R) 16.0KiB-16.0KiB, (W...
du(是 disk usage 的简称)用来显示目录或文件的大小,查找文件和目录的磁盘使用情况的命令。du 命令在与各种选项一起使用时能以多种格式提供结果。 使用方法 语法:du [-abcDhHklmsSx] [-L <符号连接>][-X <文件>][--block-size][--exclude=<目录或文件>] [--max-depth=<目录层数>][--help][--vers...
sudo apt-getclean 1. 2. autoremove 命令会删除那些自动安装的、现在不再需要的依赖包;clean 会清理缓存文件。 使用lsof 查找占用空间的文件 有时候,磁盘空间被占满是因为某些程序占用了太多的空间。你可以用lsof 命令(这个命令是用来列出所有被打开的文件)来看看哪些文件正被这些程序占用。
ncdu(NCurses Disk Usage)是一个交互式的磁盘使用情况分析工具,适合查看大型目录的磁盘使用情况。 安装和使用: 代码语言:txt 复制 sudo apt-get install ncdu # Debian/Ubuntu系统 sudo yum install ncdu # CentOS/RHEL系统 ncdu /path/to/directory 5. find 命令 find命令可以用于查找文件并执行各种操作,结合-siz...
du命令是Disk Usage的缩写,用于显示文件和目录的磁盘使用情况。通过du命令,你可以快速了解哪些文件或目录占用了大量的存储空间,从而更好地进行磁盘管理。 基本语法 du命令的基本语法为: 代码语言:javascript 复制 du[选项][文件或目录] 常用选项 -h, --human-readable: 以易读的格式显示文件和目录的大小,例如KB、...
ncdu(NCurses Disk Usage)命令是一个基于ncurses库的磁盘使用情况分析工具,可以以交互方式查看文件和目录的磁盘使用情况。可以使用以下命令来安装ncdu: “` sudo apt-get install ncdu “` 安装完成后,可以直接在终端中运行”ncdu”命令,然后使用箭头键和回车键来导航和查看磁盘使用情况。
ncdu(NCurses Disk Usage)是一个基于文本界面的磁盘使用情况分析工具,类似于du但提供了更友好的交互界面。 基本用法(需要先安装ncdu): bash sudo apt-get install ncdu # Debian/Ubuntu 系统 sudo yum install ncdu # CentOS/RHEL 系统 ncdu /path/to/directory 进入指定的目录,ncdu会分析该目录及其子目录的磁...
The Linux “du” (Disk Usage) is a standard Unix/Linux command, used to check the information of disk usage of files and directories on a machine. The du command has many parameter options that can be used to get the results in many formats. The du command also displays the files and...