« MSN 7.5 @ windows xp 被强制升级到 windows live messenger 8.1 |
Main
| windtear 追求完美去掉3个 Google 广告和推介 »
September 20, 2007
e2fsck 修复大于 2T 的文件系统
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。
https://windtear.net/archives/2007/09/20/001276.html
相关知识:
2T disk partition
GNU Parted
e2fsprogs: dumpe2fs debugfs e2fsck tune2fs mkfs.ext3 findsuper
LSI MegaRaid MegaCli
背景:
一台机器 LSI 的raid控制器 8048E (之前是 Adaptec 3805)
没有电池/BBU 打开 WriteBack 性能不好 改
文件系统坏了 需要修
e2fsck -b 8193 /dev/sdb1 不干活
e2fsck -b 32768 -B 4096 /dev/sdb1 也不干活
解决:
大于 2T superblock 在后面
http://www.redhat.com/archives/ext3-users/2005-November/msg00005.html
mkfs.ext3 -n 可以显示出来备份 superblock 的偏移位置 用最后一个就行了
首先要 parted /dev/sdb check or print 检查分区设置
然后 e2fsck -b 偏移量 -C -y /dev/sdb1 修复
修之前可以用 debugfs 去掉 journal 等
debugfs -w -R "feature ^has_journal,^needs_recovery" /dev/sdb1
修完最后 tune2fs -j 加上 journal
MegaCli 可以查看 LSI RAID 控制器配置信息 如
MegaCli -CfgDsply -a0
MegaCli PDList -aAll
|
|
Posted by windtear at September 20, 2007 5:58 PM