|
|
Software Raid - Linux
|
Views : 215
|
|
Tagged in : Linux
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Software Raid
1. Create devices:
root@host:/# mknod /dev/md0 b 9 0
root@host:/# mknod /dev/md1 b 9 1
[...]
2. Create partitions, partition type fd (Linux raid autodetect):
root@host:/# fdisk /dev/sda
root@host:/# fdisk /dev/sdb
3. Create filesystem:
root@host:/# mkreiserfs /dev/sda1
root@host:/# mkreiserfs /dev/sdb1
[...]
4. Cretate RAID:
root@host:/# mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/sda1 /dev/sdb1
root@host:/# mdadm --create /dev/md1 --level=1 --raid-devices=2 /dev/sda2 /dev/sdb2
[...]
|
|
By Geethalakshmi, On - 2010-05-30 |
|
|
|