fsck가 자주 실패함(3~4번 시작될 때마다)

fsck가 자주 실패함(3~4번 시작될 때마다)

저는 트리플 부팅 시스템(Ubuntu, Kali, Win7)을 가지고 있으며 주로 Kali Linux(4.6.0-kali1-amd64)를 사용합니다. 3~4번의 성공적인 실행이 완료될 때마다 이 오류가 발생합니다. ->

    fsck.ext4: Superblock checksum does not match superblock while trying 
    to access /dev/sda7
    /dev/sda7:
    Superblock cannot be read may be an invalid ext2 filesystem. 
    If yor device really formatted with ext fil system then 

e2fsck를 실행해 보세요. 슈퍼 블록이 손상되었을 수 있습니다.

    e2fsck -b 8193 <device>

    fsck exited with status code 8

그 후 이 오류로 인해 루트는 fsck 명령을 실행해야 하는 (initramfs) 콘솔을 마운트하고 들어갈 수 없습니다.

나에게 도움이 된 임시 솔루션은 다음과 같습니다.

방금 달렸어

    e2fsck -b "Magick Number" /dev/sda7 
     OR
    fsck /dev/sda7

그런 다음 kali를 다시 시작하면 문제가 없었지만 일부 시작 후에 문제가 다시 나타났습니다(앞서 언급한 대로). 우분투에는 그런 문제가 없습니다. 그럼 어떻게 고치나요? 네..시간이 슈퍼블록에 영향을 미치나요? 내 Kali의 시간은 정확하지 않지만 Ubuntu 및 Windows에서는 시간이 정확하지 않기 때문에

참고: e2fsck와 fsck는 나에게 작동하지 않습니다

fdisk 출력:

$ fdisk /dev/sda

Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x851b9aac

Device     Boot      Start        End   Sectors   Size Id Type
/dev/sda1  *          2048     206847    204800   100M  7 HPFS/NTFS/exFAT
/dev/sda2           206848  976762879 976556032 465.7G  7 HPFS/NTFS/exFAT
/dev/sda3       1175027710 1953521663 778493954 371.2G  f W95 Ext'd (LBA)
/dev/sda4        976762880 1175025663 198262784  94.6G 83 Linux
/dev/sda5       1396195328 1911578623 515383296 245.8G  7 HPFS/NTFS/exFAT
/dev/sda6       1911580672 1953521663  41940992    20G 83 Linux
/dev/sda7       1175027712 1387147263 212119552 101.2G 83 Linux
/dev/sda8       1387149312 1396193279   9043968   4.3G 82 Linux swap / Solaris

Partition 3 does not start on physical sector boundary.
Partition table entries are not in disk order.

관련 정보