Changes between Version 1 and Version 2 of LSIraid


Ignore:
Timestamp:
03/01/21 15:27:25 (3 years ago)
Author:
niles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LSIraid

    v1 v2  
    169169# mount -a 
    170170}}} 
     171 
     172 
     173== Other handy things == 
     174 
     175{{{ 
     176# Show the controller 
     177/opt/MegaRAID/storcli/storcli64 /c0 show 
     178 
     179# Show the enclosure (enclosure ID is 37) 
     180/opt/MegaRAID/storcli/storcli64 /c0/e37 show 
     181 
     182# Show the details on the drive in slot 15 
     183/opt/MegaRAID/storcli/storcli64 /c0/e37/s15 show all 
     184 
     185# Force a drive, slot 11, to be good (would only have to do this if a drive has 
     186# been marked as "F" - Foreign - due to use in a previous RAID. 
     187/opt/MegaRAID/storcli/storcli64 /c0/e32/s11 set good force 
     188 
     189# Set the drive in slot 11 as a hot spare. 
     190/opt/MegaRAID/storcli/storcli64 /c0/e32/s11 add hotsparedrive 
     191}}}