我想在正在运行的 Linux 上创建 RAID1
我安装了 Ubuntu 服务器 12.04,然后安装了 backuppc 软件。我将操作系统安装在具有 160GB 存储空间的硬盘上
因此,我想再放 2 个 2TB 硬盘来存储这些备份数据。那么,我该如何为这 2 TB 硬盘创建 RAID1?
我的意思是在 160 GB 硬盘上安装了操作系统
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 499711 248832 83 Linux
/dev/sda2 501758 312498175 155998209 5 Extended
/dev/sda5 501760 312498175 155998208 8e Linux LVM
然后,我又放了 2 个硬盘,分别是 sdb1 和 sdc1
相关信息/dev/sdb
Disk /dev/sdb: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 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: 0x000f2e02
Device Boot Start End Blocks Id System
/dev/sdb1 2048 3907028991 1953513472 83 Linux
相关信息/dev/sdc
Disk /dev/sdc: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 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: 0x0005d662
Device Boot Start End Blocks Id System
/dev/sdc1 2048 3907028991 1953513472 83 Linux
所以,我的想法是我想保存里面的数据/dev/sdb1
并想将/dev/sdc1
其作为镜像/dev/sdb1
(使用 raid1)
那么,我该怎么做呢?