• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[Gelöst] Problem mit GRUB/Partition lesen

Hallo,

ich wollte vorhin meinen Testrechner, welcher eine
OCZ Vertex 32GB SSD hat starten, als ich von folgender
Fehlermeldung begrüßt wurde :
Code:
GRUB Loading stage1.5.

GRUB loading, please wait...
Error 17
danach ein blinkender Cursor und ende.

Ich habe die SSD dann in meinen anderen Linux Rechner eingebaut,
wollte die /home partition mounten und noch ein paar files rüberkopieren,
als ich die nächste Fehlermeldung bekam :

Code:
workstation:~ # fdisk -l

...

Disk /dev/sdb: 32.6 GB, 32641748992 bytes
255 heads, 63 sectors/track, 3968 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: ...

Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1         262     2104483+  82  Linux swap / Solaris
/dev/sdb2   *         263        1774    12145140   83  Linux
/dev/sdb3            1775        3968    17623305   83  Linux

workstation:~ # mount -t xfs /dev/sdb3 /mnt
mount: Structure needs cleaning

workstation:~ #
Gibt es da noch eine Möglichkeit an die sdb3 heranzukommen oder
ist das Dateisystem darauf jetzt zerstört (mount: Structure needs cleaning) ?

OS : 11.1 x64 (auf beiden)
Dateisystem : XFS (auf beiden)
 
A

Anonymous

Gast
Hi,

scheint an XFS zu liegen. Du kannst ja mal hier schauen: http://xfs.org/index.php/XFS_FAQ

Q: I see applications returning error 990 or "Structure needs cleaning", what is wrong?

The error 990 stands for EFSCORRUPTED which usually means XFS has detected a filesystem metadata problem and has shut the filesystem down to prevent further damage. Also, since about June 2006, we converted from EFSCORRUPTED/990 over to using EUCLEAN, "Structure needs cleaning."

The cause can be pretty much anything, unfortunately - filesystem, virtual memory manager, volume manager, device driver, or hardware.

There should be a detailed console message when this initially happens. The messages have important information giving hints to developers as to the earliest point that a problem was detected. It is there to protect your data.

You can use xfs_check and xfs_repair to remedy the problem (with the file system unmounted).
 
OP
Q

quad_core64

Member
Also :

xfs_check brach mit einer Fehlermeldung ab,
aber nachdem ich
Code:
xfs_repair -L /dev/sdb3
ausgeführt hatte, konnte ich die Partition wieder mounten
und die files rüberkopieren. Soweit so gut.

ABER : der Inhalt der Partition war nach dem "xfs_repair" völlig durcheinander gewürfelt.
Wäre das eine Systempartition gewesen, wäre sie wohl nichtmehr bootbar/verwendbar !
 
Oben