Laufwerk läßt sich nicht mounten :-(

carsten_h

carsten_h

Aktives Mitglied
Thread Starter
Dabei seit
14.01.2004
Beiträge
5.143
Reaktionspunkte
1.847
Moin!

Ich habe das Problem mit einem nicht mountbaren Laufwerk. folgendes kommt beim reparieren heraus:
Code:
diskutil repairVolume /dev/disk4s2
Started file system repair on disk4s2 2TB Raidon oben
Repairing file system
Invalid content in journal
Checking Journaled HFS Plus volume
Checking extents overflow file
Checking catalog file
Checking multi-linked files
Checking catalog hierarchy
Checking extended attributes file
Checking volume bitmap
Checking volume information
Repairing volume
Rechecking volume
Checking Journaled HFS Plus volume
Checking extents overflow file
Checking catalog file
Checking multi-linked files
Checking catalog hierarchy
Checking extended attributes file
Checking volume bitmap
Checking volume information
The volume 2TB Raidon oben was repaired successfully
File system check exit code is 0
Updating boot support partitions for the volume as required
Finished file system repair on disk4s2 2TB Raidon oben

Beim mounten dann das:
Code:
diskutil mount /dev/disk4s2
Volume on disk4s2 failed to mount
If the volume is damaged, try the "readOnly" option

Beim mounten readOnly dann das:
Code:
diskutil mount readOnly /dev/disk4s2
Volume on disk4s2 failed to mount
If the volume is damaged, try the "readOnly" option

Das einzige, was mir seltsam vorkommt ist folgendes:
"Invalid content in journal"

Was kann ich tun?
 
Fsck funktioniert nur für /
 
Du hast ja ein raid gehause/Raid gerät, die meisten Geräte von Raidon bieten ja unterschiedlich RAID Einstellungen und/oder auch jbod, welche Einstellung hast du da gewählt?
 
Das ist ein Einzellaufwerk. Ich habe dem Volume nur den Namen mit Raidon gegeben. Es ist kein RAID im Spiel, sonst hätte ich das geschrieben.
 
Backup der Daten ist vorhanden?
Schon mal Journaling deaktiviert und dann neu aktiviert?
 
Ja, es gibt ein Backup.
Nein Journaling de/aktivieren habe ich noch nicht probiert. Das werde ich nachher mal versuchen.
 
Code:
diskutil disableJournal /dev/disk4s2
An error occurred journaling the file system: Couldn't mount disk (-69842)

Journaling kann leider nicht deaktiviert werden. :-(
 
probier mal fsck_hfs statt fsck, da kannst eine device angeben.
 
Code:
sudo fsck_hfs /dev/disk4s2
** /dev/rdisk4s2
   Executing fsck_hfs (version hfs-305.10.1).
   Invalid content in journal
** Checking Journaled HFS Plus volume.
   The volume name is 2TB Raidon oben
** Checking extents overflow file.
** Checking catalog file.
** Checking multi-linked files.
** Checking catalog hierarchy.
** Checking extended attributes file.
** Checking volume bitmap.
** Checking volume information.
** Repairing volume.
** Rechecking volume.
** Checking Journaled HFS Plus volume.
   The volume name is 2TB Raidon oben
** Checking extents overflow file.
** Checking catalog file.
** Checking multi-linked files.
** Checking catalog hierarchy.
** Checking extended attributes file.
** Checking volume bitmap.
** Checking volume information.
** The volume 2TB Raidon oben was repaired successfully

Aber mounten geht trotzdem nicht. :-(
 
probier mal mount_hfs mit -j kannst das journal ignorieren.
musst wohl vorher noch ein verzeichnis als mount punkt anlegen, in /Volumes oder so
nachher das löschen vergessen.
 
  • Gefällt mir
Reaktionen: carsten_h
probier mal mount_hfs mit -j kannst das journal ignorieren.

Hey, cool jetzt wurde es gemountet!
Code:
sudo mount_hfs -j /dev/disk4s2 /tmp/mnt

ls -al /tmp/mnt
total 311328
drwxrwxr-x  9 root     wheel        374  8 Sep 20:36 .
drwxrwxrwt@ 7 root     wheel        238 17 Sep 11:41 ..
-rw-r--r--@ 1 ich  staff      10244 21 Jul 17:27 .DS_Store
drwx------  5 ich  staff        170 13 Feb  2016 .Spotlight-V100
d-wx-wx-wt  2 ich  staff         68  5 Jun 21:58 .Trashes
drwx------  3 ich  staff        102 15 Sep 18:37 .fseventsd
----------  1 root     wheel  159383552 13 Feb  2016 .journal
----------  1 root     wheel       4096 13 Feb  2016 .journal_info_block
drwxr-xr-x  4 ich  staff        136 12 Mär  2016 Spanned Media

Danke! Mal sehen wie ich da weiterkomme, aber ich denke, daß ich dem Dateisystem nicht mehr trauen sollte.
 
lösch halt das journal, damit es neu aufgebaut wird.
 
versuch vielleicht erst mal mit diskutil das disablejournal, sollte sauberer sein.
 
  • Gefällt mir
Reaktionen: carsten_h
So, disableJournal funktionierte nicht:
Code:
diskutil disableJournal /tmp/mnt
Journaling was already disabled for volume 2TB Raidon oben on disk4s2

Aber enableJournal funktionierte:
Code:
diskutil enableJournal /tmp/mnt
Journaling has been enabled for volume 2TB Raidon oben on disk4s2

Und danach funktioniert auch das hier:
Code:
diskutil mount /dev/disk4s2
Volume 2TB Raidon oben on /dev/disk4s2 mounted

Danke! Aber ich werde das Laufwerk trotzdem löschen und neu beschreiben, nachdem ich nachgesehen habe ob das Backup aktuell war. Aber das war von vorgestern und seitdem ist nichts mehr passiert.
 
Zurück
Oben Unten