在 Ubuntu 服务器 14.04 中安装 raid 0 NTFS 驱动器时出现问题

在 Ubuntu 服务器 14.04 中安装 raid 0 NTFS 驱动器时出现问题

我有 2 个磁盘,星展银行南达科他州输出如下gdisk

$ sudo gdisk -l /dev/sda
GPT fdisk (gdisk) version 0.8.8

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.
Disk /dev/sda: 7814037168 sectors, 3.6 TiB
Logical sector size: 512 bytes
Disk identifier (GUID): 83E2C8AF-B99A-4DF3-84F2-6783DA14E485
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 7814037134
Partitions will be aligned on 8-sector boundaries
Total free space is 0 sectors (0 bytes)

Number  Start (sector)    End (sector)  Size       Code  Name
   1              34            2081   1024.0 KiB  4201  LDM metadata partition
   2            2082          262177   127.0 MiB   0C01  Microsoft reserved part
   3          262178      7814037134   3.6 TiB     4200  LDM data partition

$ sudo gdisk -l /dev/sdc
GPT fdisk (gdisk) version 0.8.8

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.
Disk /dev/sdc: 7814037168 sectors, 3.6 TiB
Logical sector size: 512 bytes
Disk identifier (GUID): 1FB7A5CB-94F3-490D-883A-2BB598F9794E
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 7814037134
Partitions will be aligned on 8-sector boundaries
Total free space is 0 sectors (0 bytes)

Number  Start (sector)    End (sector)  Size       Code  Name
   1              34            2081   1024.0 KiB  4201  LDM metadata partition
   2            2082          262177   127.0 MiB   0C01  Microsoft reserved part
   3          262178      7814037134   3.6 TiB     4200  LDM data partition

blkid这两个磁盘均无信息,只有操作系统的信息:

$ sudo blkid
/dev/sdb1: UUID="e7679bdc-374c-416a-affe-4e5f3eefdfab" TYPE="ext4"
/dev/sdb5: UUID="07c5f04e-e173-42ad-a6f8-429b9d035f2b" TYPE="swap"

我尝试使用 的变体安装 NTFS raid sudo mount -t ntfs-3g /dev/sd[ac][1-3] /mnt,但失败并出现相同的响应:

NTFS signature is missing.
Failed to mount '/dev/sda3': Invalid argument
The device '/dev/sda3' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

很明显,这些磁盘不是 NTFS 格式的,但是我在 Windows 中对它们进行了格式化,并且在将它们插入 ubuntu 环境之前检查了磁盘 - 所以肯定是 NTFS。

有人知道如何安装 RAID 0 磁盘吗?

答案1

两个磁盘均有类型为 4200 和 4201 的分区,表示 Microsoft逻辑磁盘管理器 (LDM),这是 Microsoft 的 Linux 逻辑卷管理器 (LVM) 的等价物。因此,您无法直接挂载这些分区,因为它们包含的文件系统保存在容器中之内分区。Linux 内核包含 LDM 支持,但我不记得 Ubuntu 是否包含该支持。如果是,您将在 Linux 目录/dev/mapper/或其子目录中看到逻辑卷的设备文件。我建议您在那里检查一下。您显然已经知道如何使用blkid,因此可以使用它来识别 NTFS 卷。

还有一件事:您说这些磁盘是 RAID 0 设备。如果这是使用主板的软件 RAID 设置的,则需要激活该支持,如下所述:

https://help.ubuntu.com/community/FakeRaidHowto

请注意,RAID 设备也可能出现在 中/dev/mapper。在 dmraid 上使用 LDM 可能会变得复杂。(我从未使用过这种特殊的组合。)

相关内容