Linux 14.981 Themen, 106.343 Beiträge

Unlesbare home-Partition

triumphTT / 6 Antworten / Flachansicht Nickles

Hallo! Bekomme beim Booten folgende Meldung:

Kontrollieren der Dateisysteme:
The filesystem revision is apparently too high for this version of e2fsck.
(Or the filesystem superblock is corrupt)

/dev/hda6:
The superblock could not be read or does not describe a correct ext2 filesystem. If the device is valid and it really contains an ext2 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

bei Antwort benachrichtigen
KarstenW triumphTT „fsck.ext3 /dev/hda6 ergibt immer dieselbe Meldung: Irgendwas stimmt mit dem...“
Optionen

Erstmal die Partition unmounten:

umount /Mountpoint (umount /home)

Der Superblock wird mehrmals in verschiedenen Bl�cken gesichert.
Bei einer Blockgr��e von 1 kByte ist der n�chste Superblock bei 8193, bei einer Blockgr��e von 2 kByte ist der n�chste Superblock bei 16384 und bei einer Blockgr��e von 4 KByte ist der n�chste Superblock bei 32768.

Die Blockgr��e kannst du mit dem Befehl "tune2fs -l /dev/hda6" herausbekommen.

Du kannst dich auch nochmal in der Manpage zu fsck.ext3 (man fsck.ext3) informieren.

"e2fsck -f -b superblock /dev/hda6"

e2fsck ist ein Frontend f�r fsck.ext3.


Aber bitte vorher die Partition /dev/hda6 unmounten !!!

Debian GNU/Linux https://www.debian.org/index.de.html
bei Antwort benachrichtigen