如何在 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 顯示,但顯示“區塊裝置為空”

我可能會錯誤地安裝這些,我需要幫助。

相關內容