mount: Mounten von /dev/sda2 auf /mnt/sda2 ist fehlgeschlagen: Ungültiges Argument

mount: Mounten von /dev/sda2 auf /mnt/sda2 ist fehlgeschlagen: Ungültiges Argument

Ich folgedieses Tutorial. Aber ich stecke bei Schritt 9 fest, irgendwie kann ich meinen USB nicht mounten.

Jedes Mal, wenn ich versuche, mein USB-Gerät zu mounten, erhalte ich die folgende Fehlermeldung:

root@OpenWrt:~# mount /dev/sda2 /mnt/sda2
mount: mounting /dev/sda2 on /mnt/sda2 failed: Invalid argument

Der USB-Stick scheint in Ordnung und verbunden zu sein, aber irgendwie kann ich die sda2-Partition (ext4) nicht mounten.

Die Partitionen scheinen auch in Ordnung zu sein:

root@OpenWrt:~# blkid
/dev/mtdblock2: TYPE="squashfs"
/dev/sda1: UUID="e39964e8-1b51-4b1f-b034-0147fa394eea" TYPE="swap"
/dev/sda2: UUID="157cfc0d-f33d-4103-950d-6ae01baa7177" TYPE="ext4"

Und das ist meine dmesgAusgabe:

root@OpenWrt:~# dmesg | grep sda
[    9.360000] sd 0:0:0:0: [sda] 7987200 512-byte logical blocks: (4.08 GB/3.80 GiB)
[    9.370000] sd 0:0:0:0: [sda] Write Protect is off
[    9.370000] sd 0:0:0:0: [sda] Mode Sense: 23 00 00 00
[    9.370000] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    9.400000]  sda: sda1 sda2
[    9.410000] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   41.850000] EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
[   41.870000] EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
[   41.880000] EXT4-fs (sda2): couldn't mount RDWR because of unsupported optional features (400)
[  270.660000] EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
[  270.670000] EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
[  270.670000] EXT4-fs (sda2): couldn't mount RDWR because of unsupported optional features (400)
[  585.040000] EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
[  585.050000] EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
[  585.060000] EXT4-fs (sda2): couldn't mount RDWR because of unsupported optional features (400)
[  586.540000] EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
[  586.550000] EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
[  586.560000] EXT4-fs (sda2): couldn't mount RDWR because of unsupported optional features (400)
[  651.570000] EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
[  651.580000] EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
[  651.590000] EXT4-fs (sda2): couldn't mount RDWR because of unsupported optional features (400)

Dies ist meine fdisk -lAusgabe:

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.


Disk /dev/sda: 4089 MB, 4089446400 bytes
255 heads, 63 sectors/track, 497 cylinders, total 7987200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1     7987199     3993599+  ee  GPT

Antwort1

Die Fehlermeldung stammt aus dieser Zeile in <Linux kernel source code>/fs/ext4/super.c:

        if (ext4_has_unknown_ext4_ro_compat_features(sb)) {
            ext4_msg(sb, KERN_ERR, "couldn't mount RDWR because of "
                     "unsupported optional features (%x)",
                     (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
                            ~EXT4_FEATURE_RO_COMPAT_SUPP));

Der Platzhalter für die Nummer in der Fehlermeldung lautet %x, daher ist die Nummer 400 in der tatsächlichen Fehlermeldung hexadezimal 0x400. Und es ist eine der durch die EXT4_FEATURE_RO_COMPAT_Konstanten identifizierten Funktionen.

Die Definitionen dieser Konstanten finden Sie hier <Linux kernel source code>/fs/ext4/ext4.h:

#define EXT4_FEATURE_RO_COMPAT_METADATA_CSUM    0x0400

Das dir_nlinkvon sourcejedi erwähnte Feature ist 0x20, nicht 0x400:

#define EXT4_FEATURE_RO_COMPAT_DIR_NLINK        0x0020

Der MR3020 konnte das Dateisystem also nicht im Lese-/Schreibmodus mounten, da sein Betriebssystem keine ext4-Metadatenprüfsummen verarbeiten kann. Sie müssen diese Funktion also mit dem Linux-System deaktivieren, mit dem Sie den USB-Stick erstellt haben. Stecken Sie den USB-Stick zurück in dieses System (mounten Sie das ext4-Dateisystem nicht) und führen Sie Folgendes aus:

tune2fs -O^metadata_csum /dev/sdX2

(Ersetzen Sie X durch die tatsächliche Kennung des USB-Sticks in Ihrem Linux-System.)

Nach erfolgreichem Ausführen dieses Befehls metadata_csumwird die Funktion im ext4-Dateisystem des USB-Sticks deaktiviert und der MR3020 sollte sie nun verwenden können.

Antwort2

Es scheint, dass der Mount-Versuch nur ext3 und ext2 versucht, nicht ext4. Sie haben ext4 doch in Ihrem Kernel, oder? (Es ist in aufgeführt /proc/filesystems.) Könnte es sein, dass Sie /dev/sda2in aufgeführt haben /etc/fstabalsext3?

Antwort3

Ich habe dieses Problem auch auf einem TL-MR3020 v3 und habe es gelöst, indem ich eine ext3-Partition statt ext4 erstellt und das Laufwerk erfolgreich gemountet habe.

Dies sind die Schritte, die ich ausgeführt habe (indem ich den Schritten auf der OpenWRT-Website gefolgt bin und einfach ext4 durch ext3 ersetzt habe):

root@OpenWrt:~# mkfs.ext3 /dev/sda1
mke2fs 1.44.5 (15-Dec-2018)
/dev/sda1 contains a ext4 file system
        created on Sun Sep 27 06:13:56 2020
Proceed anyway? (y,N) y
Creating filesystem with 511744 4k blocks and 128000 inodes
Filesystem UUID: 2bbb533d-925f-43fb-946a-4190fe612186
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912

Allocating group tables: done
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done

root@OpenWrt:~# block detect | uci import fstab
root@OpenWrt:~# uci set fstab.@mount[0].enabled='1' && uci set fstab.@global[0].anon_mount='1' && uci commit fstab
root@OpenWrt:~# /etc/init.d/fstab boot
root@OpenWrt:~# df -h
Filesystem                Size      Used Available Use% Mounted on
/dev/root                 2.5M      2.5M         0 100% /rom
tmpfs                    29.3M      1.1M     28.2M   4% /tmp
/dev/mtdblock4            3.8M      1.2M      2.5M  33% /overlay
overlayfs:/overlay        3.8M      1.2M      2.5M  33% /
tmpfs                   512.0K         0    512.0K   0% /dev
/dev/sda1                 1.9G      3.0M      1.8G   0% /mnt/sda1
root@OpenWrt:~#

Ich weiß, das ist eine alte Frage, aber vielleicht hilft sie jemandem

Antwort4

Haben Sie es nach dem Erstellen der Partition mit ext4 formatiert?

mkfs.ext4 /dev/sda2

Versuchen Sie dann das Mounten oder Mounten mit ext4, indem Sie den Dateisystemtyp explizit angebenmount -t ext4 /dev/sda2 /mnt/sda2

verwandte Informationen