雲端計算學習路線教程大綱課件:XFS檔案系統

千鋒雲端計算發表於2019-09-18

====================================================================================

Centos7 預設的檔案系統,為什麼要對EXT家族放棄?

EXT 家族支援度最廣:

但建立檔案系統(格式化)慢!

但修復慢!

但檔案系統儲存容量有限!

xfs 同樣是一種日誌式檔案系統:

高容量,支援大儲存

高效能,建立/修復檔案系統快

inode 與 block 都是系統需要用到時,才動態配置產生

XFS檔案系統

• 資料區 (data section)

資料區就跟之前瞭解到的 ext 家族一樣,包括 inode/data block/superblock 等資訊,都放在該區塊。

• 檔案系統日誌區 (log section)

• 實時執行區 (realtime section)

雲端計算學習路線教程大綱課件:XFS檔案系統

修復 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


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69916964/viewspace-2657401/,如需轉載,請註明出處,否則將追究法律責任。

相關文章