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

そして、この後、このエラーのためにルートとしてマウントできず、(initramfs) コンソールに入り、そこで fsck コマンドを実行する必要があります。

私にとって効果があった一時的な解決策は次のとおりです:

私はただ走った

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

その後、Kali を再起動すると問題なく動作しましたが、数回の起動後に問題が再発します (前述のとおり)。Ubuntu ではこのような問題はありません。では、どうすれば修正できますか? はい、時間はスーパーブロックに影響しますか? 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.

関連情報