我有一台服务器由两个 HDD 1500 GB SATA(/dev/sda 和 /dev/sdb)组成,其中一个出现故障,服务器处于恢复模式。我想修复它,首先我备份了重要信息。然后我更换了故障硬盘。
我不知道如何开始。我需要知道如何修复信息并将其从一个磁盘复制到另一个磁盘,以及如何在 Ubuntu 12.04 处于恢复模式下配置 RAID 1。
这是我的系统的设置方式:
# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 3.8G 319M 3.5G 9% /
none 3.7G 4.0K 3.7G 1% /dev
none 774M 264K 774M 1% /var/run
none 5.0M 0 5.0M 0% /var/run/lock
none 3.8G 0 3.8G 0% /var/run/shm
# fdisk -l
Disk /dev/sda: 1500.3 GB, 1500301910016 bytes
255 heads, 63 sectors/track, 182401 cylinders, total 2930277168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x000dd8e4
Device Boot Start End Blocks Id System
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdb: 1500.3 GB, 1500301910016 bytes
255 heads, 63 sectors/track, 182401 cylinders, total 2930277168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
# cat /proc/mdstat
Personalities : [raid1] [raid0] [raid6] [raid5] [raid4] [linear] [multipath] [raid10]
unused devices: <none>
# mdadm --assemble --run /dev/md/0
# mdadm --assemble --run /dev/md/1
答案1
为此,您不需要处于恢复模式;你可以正常启动系统。然后像旧磁盘一样对新磁盘进行分区,并将新磁盘上的任何分区添加到任何现有阵列中,如下所示:
sudo mdadm /dev/md0 --add /dev/sdb1
之后,如果您检查阵列的状态,sudo mdadm -D /dev/md0
您应该会看到它正在重新同步。
此外,12.04 已被弃用,并于明年到期,因此您应该升级到 14.04。