linuxidc@linuxidc:~$ df -t ext4
文件系统 1K-块 已用 可用 已用% 挂载点
/dev/sda2 55438112 12261156 40331132 24% /
/dev/sda3 28705700 374852 26849632 2% /boot
/dev/sda4 25821988 15587616 8899640 64% /home
linuxidc@linuxidc:~$
如果您想查看除ext4以外的所有文件系统类型,则传递-x选项并键入(ext3,ext4)以从输出中排除。
linuxidc@linuxidc:~$ df -x ext4
文件系统 1K-块 已用 可用 已用% 挂载点
udev 1949940 0 1949940 0% /dev
tmpfs 395396 12000 383396 4% /run
tmpfs 1976964 13776 1963188 1% /dev/shm
tmpfs 5120 4 5116 1% /run/lock
tmpfs 1976964 0 1976964 0% /sys/fs/cgroup
/dev/loop0 5248 5248 0 100% /snap/network-manager/233
/dev/loop3 128256 128256 0 100% /snap/vscode/22
/dev/loop1 415232 415232 0 100% /snap/intellij-idea-community/27
/dev/loop2 155776 155776 0 100% /snap/skype/9
/dev/loop5 131072 131072 0 100% /snap/vscode/23
/dev/loop7 83328 83328 0 100% /snap/core/3887
10.显示df命令选项和帮助
通过输入以下命令,您可以使用df命令查看所有可用的选项。
linuxidc@linuxidc:~$ df --help
用法:df [选项]... [文件]...
显示有关每个FILE所在文件系统的信息,
或默认情况下所有文件系统。
必选参数对长短选项同时适用。
-a, --all include pseudo, duplicate, inaccessible file systems
-B, --block-size=SIZE scale sizes by SIZE before printing them; e.g.,
'-BM' prints sizes in units of 1,048,576 bytes;
see SIZE format below
-h, --human-readable print sizes in powers of 1024 (e.g., 1023M)
-H, --si print sizes in powers of 1000 (e.g., 1.1G)
-i, --inodes 显示inode 信息而非块使用量
-k 即--block-size=1K
-l, --local 只显示本机的文件系统
--no-sync 取得使用量数据前不进行同步动作(默认)
--output[=FIELD_LIST] use the output format defined by FIELD_LIST,
or print all fields if FIELD_LIST is omitted.
-P, --portability use the POSIX output format
--sync invoke sync before getting usage info
--total elide all entries insignificant to available space,
and produce a grand total
-t, --type=TYPE limit listing to file systems of type TYPE
-T, --print-type print file system type
-x, --exclude-type=TYPE limit listing to file systems not of type TYPE
-v (ignored)
--help 显示此帮助信息并退出
--version 显示版本信息并退出