2010年10月29日 星期五

[Linux 命令] tune2fs : 調整 ext2 檔案系統的參數

屬性 : 系統相關 - 檔案系統 
語法 : tune2fs [參數] 裝置名稱 
參數 | 功能 

-c 次數 | 掛接多少次後, 執行磁碟檢查
-e 行為 | 發現錯誤後的行為, 包括continue, remount-ro, panic
-f | 發現錯誤, 仍強迫執行
-i 時間 | 檢查的間隔, d 為日數, m 為月數, w為週數
-j | 建立 ext3 的日誌式檔案系統
-l | 列出檔案系統的相關資訊
-L 標籤 | 指出檔案系統的標籤名稱
-m 保留比率 | 指定對硬碟的保留比率, 預設為5%


執行範例 : 
* 列出 /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 檔案系統常用的調整工具, 不過在使用相關磁碟指令時, 要特別小心, 以免操作錯誤導致資料毀損.

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...