中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點關(guān)注 > linux常用命令

Linux df命令詳解

時間:2019-09-07

linux命令大全_linux命令大全應(yīng)用_linux命令大全軟件

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)

linux命令大全應(yīng)用_linux命令大全軟件_linux命令大全

顯示所有磁盤空間占用情況

df -ha  【-a  顯示所有】

linux命令大全軟件_linux命令大全_linux命令大全應(yīng)用

注意:tmpfs 是一個不存在于實體硬盤上、而是駐在記憶里的特殊文件系統(tǒng)。其中一個副作用就是當(dāng)你失去電源(或重就開機)時linux命令大全linux命令大全,tmpfs 上的一切內(nèi)容都會消失。tmpfs 駐守在內(nèi)存里,它的速度極快。它的尋覓時間與駐守在硬盤上的一般文件系統(tǒng)根本不能相比。

linux命令大全_linux命令大全應(yīng)用_linux命令大全軟件

mount -t tmpfs tempfilesystem /mnt/tmpfs 【手動掛載tmpfs文件系統(tǒng)】

以inode模式顯示磁盤使用情況

linux命令大全軟件_linux命令大全應(yīng)用_linux命令大全

[root@localhost omc]# df -i

顯示指定類型磁盤

[root@localhost omc]# df -ht ext4

列出文件系統(tǒng)的類型【常用】

[root@localhost omc]# df -h
 上一個教程:linux的zip命令詳解