查看磁盘与目录的信息。
df 参数
-a : 列出所有的文件系统,包括系统特有的/proc
-k: 以kBytes 为单位显示文件系统
-m:以MBytes 为单位显示文件系统
-h: 以人们比较易读的GBytes,MBytes,KBytes显示文件系统
-H: 以M=1000k 为单位显示
-T:连同分区的filesystem 一同显示
-i:不用硬盘容量 而以inode的数量来显示
以默认方式显示
[root@localhost tmp]# df
文件系统 1K-块 已用 可用 已用% 挂载点
/dev/sda2 3960348 2042940 1712984 55% /
/dev/sda1 101086 11284 84583 12% /boot
tmpfs 237656 0 237656 0% /dev/shm
将容量结果以易读的容量格式显示
[root@localhost /]# df -h
文件系统 容量 已用 可用 已用% 挂载点
/dev/sda2 3.8G 2.0G 1.7G 55% /
/dev/sda1 99M 12M 83M 12% /boot
tmpfs 233M 0 233M 0% /dev/shm
显示所有系统文件
[root@localhost /]# df -aT
文件系统 类型 1K-块 已用 可用 已用% 挂载点
/dev/sda2 ext3 3960348 2042932 1712992 55% /
proc proc 0 0 0 - /proc
sysfs sysfs 0 0 0 - /sys
devpts devpts 0 0 0 - /dev/pts
/dev/sda1 ext3 101086 11284 84583 12% /boot
tmpfs tmpfs 237656 0 237656 0% /dev/shm
none binfmt_misc 0 0 0 - /proc/sys/fs/binfmt_misc
sunrpc rpc_pipefs 0 0 0 - /var/lib/nfs/rpc_pipefs
[root@localhost /]# df -h
文件系统 容量 已用 可用 已用% 挂载点
/dev/sda2 3.8G 2.0G 1.7G 55% /
/dev/sda1 99M 12M 83M 12% /boot
tmpfs 233M 0 233M 0% /dev/shm
[root@localhost /]# df -ih
文件系统 Inode (I)已用 (I)可用 (I)已用% 挂载点
/dev/sda2 999K 87K 913K 9% /
/dev/sda1 26K 35 26K 1% /boot
tmpfs 59K 1 59K 1% /dev/shm
[root@localhost /]# df -m
文件系统 1M-块 已用 可用 已用% 挂载点
/dev/sda2 3868 1996 1673 55% /
/dev/sda1 99 12 83 12% /boot
tmpfs 233 0 233 0% /dev/shm
显示 /etc 目录下的磁盘容量
[root@localhost tmp]# df -h /etc
文件系统 容量 已用 可用 已用% 挂载点
/dev/sda2 3.8G 2.0G 1.7G 55% /