df命令

/ # df 
Filesystem          1K-blocks      Used   Available   Use%   Mounted on
ubi0:rootfs           219852     31016      188836       14%        /
devtmpfs             126528         4         126524           0%       /dev
tmpfs                   126528         4         126524           0%      /var
tmpfs                   126528         0         126528           0%      /home
tmpfs                   126528         4         126524           0%      /dev


/ # df -h
Filesystem             Size          Used    Available    Use%    Mounted on

ubi0:rootfs             214.7M     30.3M    184.4M      14%        /
devtmpfs                123.6M      4.0K     123.6M         0%       /dev
tmpfs                   123.6M      4.0K       123.6M          0%      /var
tmpfs                   123.6M         0         123.6M          0%      /home
tmpfs                   123.6M      4.0K        123.6M          0%      /dev

/ # df -h -a
Filesystem              Size         Used      Available     Use%    Mounted on

ubi0:rootfs             214.7M     30.3M    184.4M          14%         /
devtmpfs                123.6M      4.0K     123.6M            0%         /dev
tmpfs                   123.6M      4.0K        123.6M             0%        /var
tmpfs                   123.6M         0          123.6M            0%         /home
tmpfs                   123.6M      4.0K        123.6M             0%        /dev
none                         0           0                0                    0%        /proc
none                         0           0                0                   0%         /sys
devpts                       0          0                0                   0%          /dev/pts


/ # df -help

df: invalid option -- 'e'
BusyBox v1.22.1 (2015-05-08 13:56:24 CST) multi-call binary.


Usage: df [-Pkmhai] [-B SIZE] [FILESYSTEM]...


Print filesystem usage statistics


        -P      POSIX output format
        -k      1024-byte blocks (default)
        -m      1M-byte blocks
        -h      Human readable (e.g. 1K 243M 2G)
        -a      Show all filesystems
        -i      Inodes
        -B SIZE Blocksize


/ # df --help
BusyBox v1.22.1 (2015-05-08 13:56:24 CST) multi-call binary.


Usage: df [-Pkmhai] [-B SIZE] [FILESYSTEM]...


Print filesystem usage statistics


        -P      POSIX output format
        -k      1024-byte blocks (default)
        -m      1M-byte blocks
        -h      Human readable (e.g. 1K 243M 2G)
        -a      Show all filesystems
        -i      Inodes
        -B SIZE Blocksize

你可能感兴趣的:(df命令)