实验目的:
1。将sdc,sdd, sde 3块硬盘组成raid5模式
2。建立LVM
3。模拟故障,sdd出故障,删除该硬盘,再重新添加硬盘,恢复raid5
4。增加LVM容量
实验步骤
1,格式化3块硬盘
fdisk /dev/sdc //格式化/dev/sdc
Command (m for help): n //增加一个新的分区
Command action
e extended
p primary partition (1-4)
p //创建主分区
Partition number (1-4): 1 //分区号为1
First cylinder (1-2610, default 1): //设置分区大小
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-2610, default 2610):
Using default value 2610
Command (m for help): t //改变系统的ID
Selected partition 1
Hex code (type L to list codes): fd //设置系统HEX为fd,即raid模式
Changed system type of partition 1 to fd (Linux raid autodetect)
Command (m for help): w //保存
分别格式化/dev/sdd /dev/sde
fdisk -l //查看分区情况
建立raid5
[root@LOCALHOST ~]# mdadm --create /dev/md0 --level=5 --raid-device=3 /dev