我的系統中有一個磁碟在軟體 RAID-1 之上使用 LVM。我似乎無法安裝分割區。
這是 mdadm --examine 的輸出
mdadm --examine /dev/sdd3
/dev/sdd3:
Magic : a92b4efc
Version : 00.90.00
UUID : 796cb574:f1263d29:de01a688:bcce49e1
Creation Time : Mon May 3 20:56:55 2010
Raid Level : raid1
Used Dev Size : 973828096 (928.71 GiB 997.20 GB)
Array Size : 973828096 (928.71 GiB 997.20 GB)
Raid Devices : 2
Total Devices : 2
Preferred Minor : 0
Update Time : Sun Sep 5 14:42:20 2010
State : active
Active Devices : 2
Working Devices : 2
Failed Devices : 0
Spare Devices : 0
Checksum : 80fcf82e - correct
Events : 0.29
Number Major Minor RaidDevice State
this 0 8 3 0 active sync /dev/sda3
0 0 8 3 0 active sync /dev/sda3
1 1 8 19 1 active sync /dev/sdb3
我如何安裝它並從中獲取數據?
答案1
您應該能夠使用“mdadm --assemble /dev/md1 --run /dev/sdd3”來解決此問題,其中 --run 是必需的,因為如果缺少成員磁碟,通常 mdadm 將中止。然後您可以執行 vgscan 並且您應該能夠掛載邏輯磁碟區。
答案2
要使 VG 可用,您需要執行以下操作:
vgchange --available -y vgname
然後您應該能夠進行lvscan
相應的安裝。