lsi阵列卡创建raid10教程
1、点击左侧的“configuration wizard”按钮,进入RAID配置界面;
1、点击左侧的“configuration wizard”按钮,进入RAID配置界面;
在redhat Eenterprise 6或者CentOS 6以上版本在使用KVM虚拟化的时,会需要配置到桥接网卡,下面就非常简单的讲一下桥接的方法(真的很简单):
查看eth0的现有状态:
[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# cat ifcfg-eth0
DEVICE="eth0"
HWADDR="00:21:5E:F0:F4:B0"
NM_CONTROLLED="yes"
BOOTPROTO="dhcp"
安装相关组件
yum -y install sysstat
yum -y install lvm2
yum -y install wget
创建VG分区
pvcreate /dev/sdb1
vgcreate -s 32M kvmvg /dev/sdb1 (必须使用32M的块)
安装solusvm
wget http://soluslabs.com/installers/solusvm/install
chmod 755 install
./install
测试磁盘性能
dd if=/dev/zero of=test bs=64k count=4k oflag=dsync