語法 : tune2fs [參數] 裝置名稱
參數 | 功能
執行範例 :
* 列出 /dev/sda11 的相關資訊
client:~ # tune2fs -l /dev/sda11
tune2fs 1.38 (30-Jun-2005)
Filesystem volume name: test12
Last mounted on:
Filesystem UUID: 151f2a8a-1d41-42d3-b5fd-f186730f1f7e
Filesystem magic number: 0xEF53
Filesystem revision #: 1 (dynamic)
Filesystem features: has_journal filetype sparse_super
Default mount options: (none)
Filesystem state: clean
...(以下省略)...
* 將檔案系統由 ext2 調整為 ext3
client:~ # tune2fs -l /dev/sda11 | grep fea <檢查檔案系統>
Filesystem features: filetype sparse_super
client:~ # tune2fs -j /dev/sda11
tune2fs 1.38 (30-Jun-2005)
Creating journal inode: done
This filesystem will be automatically checked every 22 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
client:~ # tune2fs -l /dev/sda11 | grep fea
Filesystem features: has_journal filetype sparse_super <有日誌, 為ext3>
補充說明 :
@. tune2fs 是 ext2 以及 ext3 檔案系統常用的調整工具, 不過在使用相關磁碟指令時, 要特別小心, 以免操作錯誤導致資料毀損.
沒有留言:
張貼留言