Linux下恢复EXT3 Superblock的正确方法

运维 系统运维
恢复超级块(Superblock)的过程其实也是一个有风险的过程.能做备份就做好备份. 如果有其他空闲设备, 用 dd 命令把该设备上的内容备份起来.

Linux Ext3文件系统超级块(Superblock)错误问题.

.... bad superblock on /dev/hda4

一个同事做的恢复, 结果把数据都抹掉了. 后来想想, 当时的直接 fsck 的恢复方法不对. 正确的方法应该是这样的:

1 获取错误的出错磁盘(或者设备)块的大小.

有很多种方法可以得到. 比如,

# tune2fs -l /dev/hda4其实大多数情况下是 1 K.

2 对当前的出错磁盘备份.

恢复超级块(Superblock)的过程其实也是一个有风险的过程.能做备份就做好备份. 如果有其他空闲设备, 用 dd 命令把该设备上的内容备份起来.

3 一般来说, 超级块错基本上也就是主超级块错, 在 Ext2/Ext3 文件系统创建的时候, 会同时在屏幕上提示我们在已经在几个地方备份了超级块.那么怎么发现这些超级块在什么地方呢? 我们看看帮助信息:

-b superblock

Instead of using the normal superblock, use an alternative superblock specified by superblock. This option is normally used when the primary superblock has been corrupted. The locaion of the backup superblock is dependent on the filesystem's blocksize. For filesystems with 1k blocksizes, a backup superblock can be found at block 8193; for filesystems with 2k blocksizes, at block 16384; and for 4k blocksizes, at block 32768.

Additional backup superblocks can be determined by using the mke2fs program using the -n option to print out where the superblocks were created. The -b option to mke2fs, which specifies blocksize of the filesystem must be specified in order for the superblock locations that are printed out to be accurate.

If an alternative superblock is specified and the filesystem is not opened read-only, e2fsck will make sure that the primary superblock is updated appropriately upon completion of the filesystem check.

4 开始恢复.如果文件系统块大小为1K, 则我们可以用如下命令恢复:

# /sbin/fsck.ext3 -b 8193 /dev/hda4

如果这个备用块(8193)也有问题,那么 可以尝试 24577(8192*3 1) ,或者是 40961 (8192*5 1).

可能您也会看出来,超级块的保存位置是按照 1,3,5,7 这样的规律的. 具体的位置在 BlockSize(8192)*N 1. 在超过 500M 的空间上是这样的规律.小于 500M 的我不知道.那位知道告诉我一下,谢谢。

【编辑推荐】

  1. 修改Linux系统下22端口的两种方法
  2. Linux下使用网站主机作为加密代理服务器
  3. Mac和Linux将面临新的漏洞攻击
责任编辑:赵宁宁 来源: zzit
相关推荐

2009-06-29 08:52:04

Linux

2009-06-27 21:41:55

Linux

2009-08-04 08:28:10

2010-03-15 16:30:53

Ubuntu Linu

2009-06-10 08:49:05

LinuxExt3恢复

2009-03-26 17:46:53

LinuxExt3Reiserfs

2012-05-08 10:56:15

Linux

2011-04-14 15:12:10

Linux恢复

2009-10-27 12:47:29

linux Ext3文

2009-12-14 14:12:07

Linux文件系统

2009-11-30 09:46:45

Ubuntu文件系统选择

2017-11-23 09:30:01

Linux文件系统sudo命令

2010-02-03 11:01:26

Linux mount

2012-05-21 09:48:58

Ext4

2009-12-16 17:11:10

Fedora 挂载

2010-06-01 09:55:24

ext4文件系统

2010-03-01 13:32:42

Linux常用文件

2017-02-28 20:00:17

Linux文件系统对比

2018-09-12 15:48:35

ext4Linux文件系统

2009-10-22 12:09:57

linux文件系统
点赞
收藏

51CTO技术栈公众号