#查看硬盘信息
fdisk -l
#分区并格式化硬盘
fdisk /dev/sdb
mkfs.ext3 /dev/sdb1
……
原创
2012-11-29 21:48:56
617阅读
#查看硬盘信息
fdisk -l
#格式化硬盘分区
fidsk /dev/sdx
#建立SoftRAID
mdadm --creat --auto=yes /dev/md1 --level=10 --raid-devices=3 --spare-devices=1 /dev/sdb1 /dev/sdc1 /dev/sdd1 /dev/sde1
#查看建立好的ra
原创
2012-11-29 21:47:44
607阅读
hard raid VS soft raid :there is no much merit in build soft raid on production enviromentit is very rare for enterprise to use soft raid. it will cosumet cpu resource.softraid is base on partitions.c
原创
2010-08-11 12:10:08
909阅读
D/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.
原创
2011-06-30 17:59:57
901阅读
在学习RAID之前,我们需要了解RAID是什么。
RAID,全称Rudundant Array of Inexpensive Disks,翻译过来就是容错式廉价磁盘阵列。它具有增加存储空间,加快读取速率好人容错功能,但是这要在RAID的不同级别下进行分析。RAID分为软RAID和硬RAID,软RAID(softRAID)是通过软件实现的(软
原创
2011-05-19 20:03:35
1672阅读
RAIDRAID实现方式 硬件方式 1、外界磁盘阵列:通过扩展卡提供适配能力 2、内接式RAID:主板集成RAID控制器 软件方式 softraid:软件方式实现raidRADI磁盘组织形式、工作方式 RAID0条带卷 strip 1、将多个硬盘平行组织起来,条带化使用 2、又上限,分割和合并需要时间 3、提供i/o并行扩展能力、耐用性下降一块坏掉都不完整 4、分散到不同的
原创
2015-10-01 20:06:25
530阅读