.powerdirector discount
So I’m speccing out some new hardware at work and .powerdirector discount have had to dredge up a bunch of dusty old RAID knowledge, while also getting familiar with LSI’s MegaCLI tools which are.. lets just say under-documented. First off, you .powerdirector discount should keep the Wikipedia page for RAID handy as a reference, it .powerdirector discount does a good job of explaining and visualizing all the different raid levels.
Standard RAID Levels and Nested RAID Levels
Nested RAID is .powerdirector discount basically multiple Standard RAID Levels that are spanned creating what amounts to .powerdirector discount a meta-RAID. This is done to improve performance, redundancy or both. The two main aspects of performance and .powerdirector discount redundancy are striping and mirroring, respectively. Mirroring is just what it .powerdirector discount sounds like, each drive is an exact mirror of the others. This results in redundancy but you’ll generally have .powerdirector discount slower write times. Striping is where sequential sectors are written and .powerdirector discount read across multiple disks in the array, giving faster seek times and .powerdirector discount general performance but without redundancy. There is also parity which is a bit more complicated but gives distributed redundancy. RAID 5 is an example of this.
So that’s some very basic RAID information. The rest of this .powerdirector discount is just a little cheat sheet for the MegaCli command line:
|
Raid Cheat Sheet |
Command Example |
|
Create Raid 1 (2 disks) |
MegaCli -CfgLdAdd -r1 [252:0,252:1] -a0 |
|
Create Raid 5 (3+ disks) |
MegaCli -CfgLdAdd -r5 [252:2,252:3,252:4,252:5] -a0 |
|
Create Raid 10 (4 disks) |
MegaCli -CfgSpanAdd -r10 -Array0[252:2,252:3] -Array1[252:4,252:5] -a0 |
|
Create Raid 50 (6+ disks) |
MegaCli -CfgSpanAdd -r50 -Array0[252:0,252:1,252:2] -Array1[252:3,252:4,252:5] -a0 |
|
Delete Virtual Disk 0 |
MegaCli -CfgLdDel -L0 -a0 |
|
Delete Virtual Disk 1 |
MegaCli -CfgLdDel -L1 -a0 |
|
Display Virtual Disk Info |
MegaCli -LDInfo -Lall -aALL |
|
Display Physical Disk Info |
MegaCli -PDList -aALL |
Note:The first value in the .powerdirector discount N:N portion is the Enclosure Device ID and the second value is .powerdirector discount the Slot Number (of the physical disk). This information can .powerdirector discount be found by running the Display Physical Disk command referenced above.
Anyway, I hope that helps someone out there.