PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Truecrypt: ext4-Partition lässt sich nicht mehr mounten



X_FISH
13.12.11, 05:34
Nach einem Upgrade von Linux Mint 11 auf Linux Mint 12 schien zunächst alles so zu funktionieren wie gewohnt.

Nun habe ich allerdings mit Truecrypt ein Problem:


truecrypt -t --mount --filesystem=ext4 /dev/sdb2 /media/truecrypt2


Enter password for /dev/sdb2:
Protect hidden volume (if any)? (y=Yes/n=No) [No]:
Error: mount: wrong fs type, bad option, bad superblock on /dev/mapper/truecrypt2,
missing codepage or helper program, or other error
Manchmal liefert das Syslog wertvolle Informationen – versuchen
Sie dmesg | tail oder so

Ich tat wie mir gesagt wurde:


dmesg | tail


[69640.993933]
[69640.993936] EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)
[70279.368349] EXT4-fs (dm-5): Mount option "bsdgroups" will be removed by 2.6.38
[70279.368351] Contact linux-ext4@vger.kernel.org if you think we should keep it.
[70279.368351]
[70279.368355] EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)
[70438.236071] EXT4-fs (dm-5): Mount option "bsdgroups" will be removed by 2.6.38
[70438.236073] Contact linux-ext4@vger.kernel.org if you think we should keep it.
[70438.236073]
[70438.236077] EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)

Im Netz finde ich diverse Vorschläge, Lösungsansätze, etc. - allerdings immer in Verbindung mit »Rechner abgestürzt«, etc.

Ist irgendwas bekannt das dies mit dem Kernel 3.x zusammen hängen könnte?

Grüße, Martin

403
13.12.11, 05:58
EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)
[70279.368349] EXT4-fs (dm-5): Mount option "bsdgroups" will be removed by 2.6.38


Hast Du versucht mit einem älteren System zu mounten? Angenommen, das
klappt, dann kannst du die Option bsdgroups erstmal aus der fstab rausschmeissen.

X_FISH
13.12.11, 06:07
Das ist ja das Konfuse: Es gibt keinen Eintrag in der /etc/fstab. Ich binde die Partition »händisch« ein in dem ich sie einfach per Aufruf einbinde:


truecrypt /dev/sdb2 /media/truecrypt2

Die Fehlermeldung ist wie oben beschrieben - auch wenn ich explizit ext4 als FS angebe.


[ 87.312617] Intel AES-NI instructions are not detected.
[ 87.360428] padlock_aes: VIA PadLock not detected.
[ 92.995344] EXT4-fs (dm-5): Mount option "bsdgroups" will be removed by 2.6.38
[ 92.995346] Contact linux-ext4@vger.kernel.org if you think we should keep it.
[ 92.995347]
[ 92.995350] EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)
[ 1104.443370] EXT4-fs (dm-5): Mount option "bsdgroups" will be removed by 2.6.38
[ 1104.443372] Contact linux-ext4@vger.kernel.org if you think we should keep it.
[ 1104.443372]
[ 1104.443375] EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)

Die Ausgabe kam nun beim Versuch mit (cat /proc/version
) folgendem Kernel:


Linux version 2.6.38-8-generic (buildd@allspice) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu3) ) #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011

Scheint also nicht am Kernel zu liegen...

Grüße, Martin

403
13.12.11, 06:17
Die Fehlermeldung ist wie oben beschrieben - auch wenn ich explizit ext4 als FS angebe.

Wenn du explizit mounten kannst, dann gib eine Alternative für bsdgroups an siehe man mount:


grpid or bsdgroups / nogrpid or sysvgroups

Viel Glück

Gruss
403

X_FISH
13.12.11, 07:22
Weiterhin:


Error: mount: wrong fs type, bad option, bad superblock on /dev/mapper/truecrypt2,
missing codepage or helper program, or other error
Manchmal liefert das Syslog wertvolle Informationen – versuchen
Sie dmesg | tail oder so

Verwendeter Aufruf:


truecrypt -t --mount --filesystem=ext4 --fs-options=sysvgroups /dev/sdb2 /media/truecrypt2

dmesg | tail:


[ 1104.443372] Contact linux-ext4@vger.kernel.org if you think we should keep it.
[ 1104.443372]
[ 1104.443375] EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)
[ 5615.825688] EXT4-fs (dm-5): Mount option "bsdgroups" will be removed by 2.6.38
[ 5615.825690] Contact linux-ext4@vger.kernel.org if you think we should keep it.
[ 5615.825691]
[ 5615.825695] EXT4-fs (dm-5): Mount option "sysvgroups" will be removed by 2.6.38
[ 5615.825696] Contact linux-ext4@vger.kernel.org if you think we should keep it.
[ 5615.825697]
[ 5615.825698] EXT4-fs (dm-5): Couldn't mount because of unsupported optional features (72905001)

Ich versuche es jetzt noch mit einer älteren Kernelversion... Ansonsten muss ich wohl die Daten abschreiben. War meine Backuppartition... Also nicht ganz so dramatisch, aber ärgerlich.

Grüße, Martin