====================================================================================
      Centos7 默认的文件系统,为什么要对EXT家族放弃?
      EXT 家族支持度最广:
      但创建文件系统(格式化)慢!
      但修复慢!
      但文件系统存储容量有限!

      xfs 同样是一种日志式文件系統:
      
    高容量,支持大存储
      高性能,创建/修复文件系统快
      inode 与 block 都是系統需要用到時,才动态配置产生
      XFS文件系统
      • 数据区 (data section)
      数据区就跟之前了解到的 ext 家族一样,包括 inode/data block/superblock 等信息,都放在该区块。
      • 文件系统日志区 (log section)
      • 实时运行区 (realtime section)
    XFS文件系统 - 图1
      修复 XFS 文件系统 xfs_repair**
      [root@tianyun ~]# xfs_repair /dev/vda1
      xfs_repair: /dev/vda1 contains a mounted filesystem
      xfs_repair: /dev/vda1 contains a mounted and writable filesystem
      fatal error — couldn’t initialize XFS library
      [root@tianyun ~]# umount /dev/vda1
      [root@tianyun ~]# xfs_repair /dev/vda1
      Phase 1 - find and verify superblock…
      Phase 2 - using internal log
      - zero log…
      - scan filesystem freespace and inode maps…
      - found root inode chunk

    LiveCD