我的系统中有一个磁盘使用了 LVM 和软件 RAID-1。我似乎无法挂载该分区。
以下是 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
相应的安装了。