Я сталкиваюсь с этой ошибкой после создания нового раздела.

Что я сделал:

# fdisk -l
Disk /dev/sdb: 3.7 TiB, 4000787029504 bytes, 7814037167 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 6E6B69EE-CD95-47E3-94A0-AA9190306D40

# fdisk /dev/sdb
Welcome to fdisk (util-linux 2.31.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.


Command (m for help): n
Partition number (1-128, default 1): 1
First sector (34-7814037133, default 2048): 
Last sector, +sectors or +size{K,M,G,T,P} (2048-7814037133, default 7814037133): 

Created a new partition 1 of type 'Linux filesystem' and of size 3.7 TiB.
Partition #1 contains a ext4 signature.

Do you want to remove the signature? [Y]es/[N]o: n

Command (m for help): p

Disk /dev/sdb: 3.7 TiB, 4000787029504 bytes, 7814037167 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 6E6B69EE-CD95-47E3-94A0-AA9190306D40

Device     Start        End    Sectors  Size Type
/dev/sdb1   2048 7814037133 7814035086  3.7T Linux filesystem

Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.

После этого это был вывод команды fdisk -l:

Disk /dev/sdb: 3.7 TiB, 4000787029504 bytes, 7814037167 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 6E6B69EE-CD95-47E3-94A0-AA9190306D40

Device     Start        End    Sectors  Size Type
/dev/sdb1   2048 7814037133 7814035086  3.7T Linux filesystem

Вот ошибка, которую я получаю при монтаже:

sudo mount /dev/sdb1 /mnt/data_storage/
mount: /mnt/data_storage: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error.

Стоит отметить, что все эти операции выполнялись на одной и той же машине, и эта машина является aarch64 с Ubuntu 18.04.1.

Те же самые операции, выполненные на компьютере x64 Ubuntu 18.04, привели к правильному разделу ext4, который я смог смонтировать и читать / записывать.

В чем может быть проблема здесь?

0