я следуюэтот урок. Но я застрял на шаге 9, почему-то не могу подключить USB.
Каждый раз, когда я пытаюсь подключить USB-накопитель, я получаю следующую ошибку:
root@OpenWrt:~# mount /dev/sda2 /mnt/sda2
mount: mounting /dev/sda2 on /mnt/sda2 failed: Invalid argument
USB-накопитель, похоже, в порядке и подключен, но мне почему-то не удаётся смонтировать раздел sda2 (ext4).
Разделы тоже, похоже, в порядке:
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"
И вот мой dmesg
вывод:
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)
Вот мой fdisk -l
вывод:
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
решение1
Сообщение об ошибке появляется в этой строке <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));
Заполнитель для числа в сообщении об ошибке — %x
, поэтому число 400 в фактическом сообщении об ошибке — это шестнадцатеричное 0x400. И это один из признаков, определенных константами EXT4_FEATURE_RO_COMPAT_
.
Определения этих констант можно найти в <Linux kernel source code>/fs/ext4/ext4.h
:
#define EXT4_FEATURE_RO_COMPAT_METADATA_CSUM 0x0400
dir_nlink
Sourcejedi упоминает функцию 0x20, а не 0x400 :
#define EXT4_FEATURE_RO_COMPAT_DIR_NLINK 0x0020
Итак, MR3020 не смог смонтировать файловую систему в режиме чтения/записи, поскольку его операционная система не может обрабатывать контрольные суммы метаданных ext4. Поэтому вам нужно будет отключить эту функцию с помощью системы Linux, которую вы использовали для создания USB-накопителя. Переместите USB-накопитель обратно в эту систему (не монтируйте файловую систему ext4) и выполните:
tune2fs -O^metadata_csum /dev/sdX2
(замените X на фактический идентификатор USB-накопителя в вашей системе Linux.)
После успешного выполнения этой команды metadata_csum
функция будет отключена в файловой системе ext4 USB-накопителя, и MR3020 теперь сможет ее использовать.
решение2
Похоже, что попытка монтирования пробует только ext3 и ext2, а не ext4. У вас в ядре есть ext4, верно? (Она указана в /proc/filesystems
.) Может быть, вы указали /dev/sda2
в /etc/fstab
какext3?
решение3
У меня тоже была эта проблема на TL-MR3020 v3, и я решил ее, создав раздел ext3 вместо ext4 и успешно смонтировав диск.
Вот шаги, которые я предпринял (следуя инструкциям на сайте OpenWRT, просто заменив ext4 на ext3):
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:~#
Я знаю, что это старый вопрос, но, возможно, он кому-то поможет.
решение4
Вы отформатировали его в ext4 после создания раздела?
mkfs.ext4 /dev/sda2
Затем попробуйте смонтировать или смонтировать с ext4, явно указав тип файловой системыmount -t ext4 /dev/sda2 /mnt/sda2