==================================================================================== Centos7 默認的文件系統(tǒng),為什么要對EXT家族放棄? EXT 家族支持度最廣: 但創(chuàng)建文件系統(tǒng)(格式化)慢! 但修復慢! 但文件系統(tǒng)存儲容量有限! xfs 同樣是一種日志式文件系統(tǒng): 高容量,支持大存儲 高性能,創(chuàng)建/修復文件系統(tǒng)快 inode 與 block 都是系統(tǒng)需要用到時,才動態(tài)配置產(chǎn)生 XFS文件系統(tǒng) · 數(shù)據(jù)區(qū) (data section) 數(shù)據(jù)區(qū)就跟之前了解到的 ext 家族一樣,包括 inode/data block/superblock 等信息,都放在該區(qū)塊。 · 文件系統(tǒng)日志區(qū) (log section) · 實時運行區(qū) (realtime section) 修復 XFS 文件系統(tǒng) 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 |
|