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 

Superblock 可能已損壞嘗試執行 e2fsck

    e2fsck -b 8193 <device>

    fsck exited with status code 8

此後,由於此錯誤,root 無法安裝並進入 (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.

相關內容