# MegaCli

#### Check raid card:

```
lspci | grep -i raid
```

#### Ubuntu/Debian:

```
apt-get install alien
# Convert to .deb
alien  -k --scripts  filename.rpm
# Install .deb
dpkg  -i  filename.deb
```

#### CentOS/Other:

[https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14\_MegaCLI.zip](https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zip)

Clear all config

```
-CfgLdDel -Lall -aAll
-CfgClr -aAll
```

Physical drive information

```shell
-PDList -aALL
-PDInfo -PhysDrv [E:S] -aALL
```

<span class="s1">Virtual drive information</span>

```
-LDInfo -Lall -aALL
```

<span class="s1">Enclosure information.</span>

```p3
-EncInfo -aALL
```

Set physical drive state to online

```p3
-PDOnline -PhysDrv[E:S] -aALL
```

Stop Rebuild manually on the drive

```p3
-PDRbld -Stop -PhysDrv[E:S] -aALL
```

<span class="s1">Show rebuild progress</span>

```p3
-PDRbld -ShowProg -PhysDrv[E:S] -aALL
```

View dead disks (offline or missing)

```p6
-ldpdinfo -aall |grep -i “firmware state\|slot”
```

View new disks

```p6
-pdlist -aall |grep -i “firmware\|unconfigured\|slot”
```

Create raid 1:

```p7
-CfgLdAdd -r1 [E:S, E:S] -aN
```

Create raid 0:

```p7
-CfgLdAdd -r0 [E:S, E:S] -aN
```

Init ALL VDs

```
-LDInit -Start -LALL -a0
```

Init 1 VD

```
-LDInit -Start -L[VD_ID] -a0
```

<span class="s1">clearcache</span>

```p3
-DiscardPreservedCache -L3 -aN (3 being the VD number)
```

Check FW

```p1
-AdpAllInfo -aALL | grep 'FW Package Build'
```

<span class="s1">Flash FW</span>

```p1
-AdpFwFlash -f <Your rom file> -a0
```

Flash FW to older version

```
 -adpfwflash -f $ROMFILE -noverchk -a0
```

Check BBU

```
-AdpBbuCmd  -a0
```

Flash LED on HDD

```shell
-PdLocate -start -physdrv[E:S] -aALL
-PdLocate -stop -physdrv[E:S] -aALL
```

Scan Foreign

```shell
-CfgForeign -Scan -a0
```

Import Foreign

```shell
-cfgforeign -import -a0
```

Bad to Good

```shell
MegaCli -PDMakeGood -PhysDrv[E:S] -aN
```

Disable auto rebuild

```
-AdpAutoRbld -Dsbl -a0
```

Enable auto rebuild

```
-AdpAutoRbld -Enbl -a0
```

Check BBU

```
-AdpBbuCmd -a0
```

#### JBOD

Figure out the Enclosure Device ID

```
-PDList -a0 | grep -e '^Enclosure Device ID:' | head -1 | cut -f2- -d':' | xargs
```

Set all the drives to “Good”

```
-PDMakeGood -PhysDrv[$id:1,$id:2,$id:3,$id:4,$id:5,$id:6,$id:7,$id:8] -Force -a0
```

Check and see if JBOD support is enabled

```
AdpGetProp EnableJBOD -aALL
```

Turn JBOD support on

```
AdpSetProp EnableJBOD 1 -a0
```

Set each disk from above to be in JBOD mode

```
-PDMakeJBOD -PhysDrv[$id:1,$id:2,$id:3,$id:4,$id:5,$id:6,$id:7,$id:8] -a0
```

The syntax for checking a disk within a MegaRAID based controller is as follows via CLI:

<p class="callout info">This shows the "Device ID: X", Replace n with the Device ID</p>

```shell
-LdPdInfo -a0 | grep Id
```

```
smartctl -a -d sat+megaraid,n /dev/sg0
```

Disk missing - No automatically rebuilding

```
-PdReplaceMissing -PhysDrv [E:S] -ArrayN -rowN -aN
-PDRbld -Start -PhysDrv [E:S] -aN
```

For more see here: [https://www.broadcom.com/support/knowledgebase/1211161498596/megacli-cheat-sheet--live-examples](https://www.broadcom.com/support/knowledgebase/1211161498596/megacli-cheat-sheet--live-examples)