Linux 命令详解之df命令

Linux 命令详解之df命令

1.命令简介

df - report file system disk space usage

df命令用于显示文件系统的磁盘使用空间【】

2.参数详解

-h, --human-readable
              print sizes in human readable format (e.g., 1K 234M 2G)

-h 命令的意思在linux系统几乎都是一样的,是以方便人类可阅读的方式展现

-l, --local
       limit listing to local file systems

-l的意思应该指的就是限制访问本地文件系统

3.实战案例

使用df -h命令展示空间使用大小

[root@server4 hbase-1.4.0]# df -h
Filesystem               Size  Used Avail Use% Mounted on
/dev/mapper/centos-root   27G  8.0G   20G  30% /
devtmpfs                 1.4G     0  1.4G   0% /dev
tmpfs                    1.4G     0  1.4G   0% /dev/shm
tmpfs                    1.4G   58M  1.4G   5% /run
tmpfs                    1.4G     0  1.4G   0% /sys/fs/cgroup
/dev/sda1               1014M  201M  814M  20% /boot
tmpfs                    283M     0  283M   0% /run/user/0

当然可以指定某个特定目录

[root@server4 hbase-1.4.0]# df -h /dev
Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        1.4G     0  1.4G   0% /dev

df displays the amount of disk space available on the file system containing each file name argument. If no file name is given, the space available on all currently mounted file systems is shown.
df命令显示每个文件参数在文件系统中的可用磁盘空间。如果没有给出文件名,则当前挂载的的所有文件系统的可用空间将会被显示。

你可能感兴趣的:(Linux)