| 516 | ==== Expand an array over an additionnal disk ==== |
| 517 | |
| 518 | Thanks to a co-worker, I have now a quick howto. |
| 519 | |
| 520 | Assuming your new unassigned drive is identified as ![252:3] and you have a RAID5 array identified as L0 (See documentation above to figure out how to find this). |
| 521 | |
| 522 | Reconfigure the array to add this new drive: |
| 523 | {{{ |
| 524 | server ~ # megacli -LDRecon -Start -r5 -Add -PhysDrv[252:3] -L0 -a0 |
| 525 | |
| 526 | Start Reconstruction of Virtual Drive Success. |
| 527 | |
| 528 | Exit Code: 0x00 |
| 529 | }}} |
| 530 | |
| 531 | Check operation progress: |
| 532 | {{{ |
| 533 | server ~ # megacli -LDInfo -L0 -a0 |
| 534 | |
| 535 | |
| 536 | Adapter 0 -- Virtual Drive Information: |
| 537 | Virtual Drive: 0 (Target Id: 0) |
| 538 | [...] |
| 539 | Ongoing Progresses: |
| 540 | Reconstruction : Completed 40%, Taken 163 min. |
| 541 | [...] |
| 542 | }}} |
| 543 | |