ext4 파일 시스템이 손상되었습니다. 그래서 파티션에서 fsck를 실행했습니다. 그러나 fsck가 완료된 후에도 여전히 파일 시스템을 마운트할 수 없습니다. 이제 슈퍼블록이 손상되었음을 보고합니다.
[root@os1 ~]# mount /dev/sda2 /mnt
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sda2, missing codepage or helper program, or other error.
[root@os1 ~]# fsck /dev/sda2
fsck from util-linux 2.32.1
e2fsck 1.45.4 (23-Sep-2019)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/sda2
The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem. If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 8193 <device>
or
e2fsck -b 32768 <device>
mkfs.ext4 -n /dev/sda2
백업 슈퍼블록( )을 찾아 복구에 활용하여 e2fsck -b superblocks /dev/sda2
백업 슈퍼블록에서 복원을 시도합니다 . 그러나 항상 동일한 오류 메시지를 반환합니다.
이제 어떻게 해야 할까요?