[root@www ~]# tune2fs [-jlL] 裝置代號
選項與參數:
-l :類似 dumpe2fs -h 的功能~將 superblock 內的資料讀出來~
-j :將 ext2 的 filesystem 轉換為 ext3 的檔案系統;
-L :類似 e2label 的功能,可以修改 filesystem 的 Label 喔!
* 列出/dev/sda11內容
[root@www ~]# tune2fs -l /dev/sda11
* 將檔案系統由 ext2 調整為 ext3
(Filesystem features)
[root@www ~]# tune2fs -l /dev/sda11 | grep fea <檢查檔案系統>
Filesystem features: filetype sparse_super
[root@www ~]# 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>
* 更換UID
(Filesystem UUID)
[root@www ~]# tune2fs -U random /dev/sda11
* 更換Lable標籤
(Filesystem volume name)
[root@www ~]# tune2fs -L [標籤名稱] /dev/sda11