df命令的功能是用來檢查linux服務(wù)器的文件系統(tǒng)的磁盤空間占用情況。
-a, --all include dummy file systems -B, --block-size=SIZE use SIZE-byte blocks --direct show statistics for a file instead of mount point --total produce a grand total -h, --human-readable print sizes in human readable format (e.g., 1K 234M 2G) -H, --si likewise, but use powers of 1000 not 1024 -i, --inodes list inode information instead of block usage -k like --block-size=1K -l, --local limit listing to local file systems --no-sync do not invoke sync before getting usage info (default) -P, --portability use the POSIX output format --sync invoke sync before getting usage info -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)
顯示所有磁盤空間占用情況
df -ha 【-a 顯示所有】
注意:tmpfs 是一個不存在于實體硬盤上、而是駐在記憶里的特殊文件系統(tǒng)。其中一個副作用就是當(dāng)你失去電源(或重就開機)時linux命令大全linux命令大全,tmpfs 上的一切內(nèi)容都會消失。tmpfs 駐守在內(nèi)存里,它的速度極快。它的尋覓時間與駐守在硬盤上的一般文件系統(tǒng)根本不能相比。
mount -t tmpfs tempfilesystem /mnt/tmpfs 【手動掛載tmpfs文件系統(tǒng)】
以inode模式顯示磁盤使用情況
[root@localhost omc]# df -i
顯示指定類型磁盤
[root@localhost omc]# df -ht ext4
列出文件系統(tǒng)的類型【常用】
[root@localhost omc]# df -h
上一個教程:linux的zip命令詳解
下一個教程:linux入門知識——命令2