如何在 Linux 上安装现有的 Intel RAID ISM(RAID 0)设备?

如何在 Linux 上安装现有的 Intel RAID ISM(RAID 0)设备?

我有两个 2011 年的 1TB 硬盘,我需要尽快从中获取数据。

这两个驱动器都在工作,并且在 Windows Vista 机器下配置为 RAID 0。这两个驱动器都插入了我的 Fedora 机器,我需要将它们安装为 RAID 设备,这样我才能提取数据。

第一个驱动器显示为 /dev/sda,第二个驱动器显示为 /dev/sdb。我使用的机器在 BIOS 中配置了 RAID 阵列的某些部分,而我当前的机器无法执行此类操作。

有没有办法将这些驱动器安装到我的机器上来访问数据?

通过运行命令“sudo mdadm -E /dev/sda /dev/sdb”,输出如下:

mdadm: /dev/sda is not attached to Intel(R) RAID controller.
mdadm: /dev/sda is not attached to Intel(R) RAID controller.
mdadm: /dev/sdb is not attached to Intel(R) RAID controller.
mdadm: /dev/sdb is not attached to Intel(R) RAID controller.
/dev/sda:
          Magic : Intel Raid ISM Cfg Sig.
        Version : 1.0.00
    Orig Family : 004c6f77
         Family : 004c6f77
     Generation : 000002cd
     Attributes : All supported
           UUID : 6dcf9662:d3c699ac:3b3da1b4:011a761c
       Checksum : 0c68413e correct
    MPB Sectors : 1
          Disks : 2
   RAID Devices : 1

[3Play]:
           UUID : 094c270d:4dd4aead:f6cc4ab7:e3a2fa3b
     RAID Level : 0
        Members : 2
          Slots : [UU]
    Failed disk : none
      This Slot : ?
    Sector Size : 512
     Array Size : 3907039232 (1863.02 GiB 2000.40 GB)
   Per Dev Size : 1953519880 (931.51 GiB 1000.20 GB)
  Sector Offset : 0
    Num Stripes : 7630936
     Chunk Size : 128 KiB
       Reserved : 0
  Migrate State : idle
      Map State : normal
    Dirty State : clean
     RWH Policy : off

  Disk00 Serial : 9VP0XDQA
          State : active
             Id : 00040000
    Usable Size : 1953514766 (931.51 GiB 1000.20 GB)

  Disk01 Serial : 9VPCVD99
          State : active
             Id : 00050000
    Usable Size : 1953514766 (931.51 GiB 1000.20 GB)
/dev/sdb:
          Magic : Intel Raid ISM Cfg Sig.
        Version : 1.0.00
    Orig Family : 004c6f77
         Family : 004c6f77
     Generation : 000002cd
     Attributes : All supported
           UUID : 6dcf9662:d3c699ac:3b3da1b4:011a761c
       Checksum : 0c68413e correct
    MPB Sectors : 1
          Disks : 2
   RAID Devices : 1

[3Play]:
           UUID : 094c270d:4dd4aead:f6cc4ab7:e3a2fa3b
     RAID Level : 0
        Members : 2
          Slots : [UU]
    Failed disk : none
      This Slot : ?
    Sector Size : 512
     Array Size : 3907039232 (1863.02 GiB 2000.40 GB)
   Per Dev Size : 1953519880 (931.51 GiB 1000.20 GB)
  Sector Offset : 0
    Num Stripes : 7630936
     Chunk Size : 128 KiB
       Reserved : 0
  Migrate State : idle
      Map State : normal
    Dirty State : clean
     RWH Policy : off

  Disk00 Serial : 9VP0XDQA
          State : active
             Id : 00040000
    Usable Size : 1953514766 (931.51 GiB 1000.20 GB)

  Disk01 Serial : 9VPCVD99
          State : active
             Id : 00050000
    Usable Size : 1953514766 (931.51 GiB 1000.20 GB)

从输出中可以看出,两个驱动器都处于活动状态,并且先前的 raid 配置已被识别,但是我无法安装它。

发出命令“sudo IMSM_NO_PLATFORM=1 mdadm --assemble --verbose /dev/md0 /dev/sda /dev/sdb”后,我得到以下输出:

mdadm: looking for devices for /dev/md0
mdadm: /dev/sda is identified as a member of /dev/md0, slot -1.
mdadm: /dev/sdb is identified as a member of /dev/md0, slot -1.
mdadm: added /dev/sdb to /dev/md0 as -1
mdadm: added /dev/sda to /dev/md0 as -1
mdadm: Container /dev/md0 has been assembled with 2 drives

最后尝试使用“sudo mount /dev/md0 /mnt”挂载它后,我得到以下输出:

mount: /mnt: can't read superblock on /dev/md0.

使用 GUI 工具 gnome-disks 后,/dev/md0 出现但显示“块设备为空”

我可能没有正确安装它们,所以我需要帮助。

相关内容