Changes between Version 2 and Version 3 of LSIraid


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

--

Legend:

Unmodified
Added
Removed
Modified
  • LSIraid

    v2 v3  
    174174 
    175175{{{ 
    176 # Show the controller 
     176# Show controller 0 
    177177/opt/MegaRAID/storcli/storcli64 /c0 show 
    178178 
     
    184184 
    185185# 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. 
     186# been marked as "F" - Foreign - due to use in a previous RAID). 
    187187/opt/MegaRAID/storcli/storcli64 /c0/e32/s11 set good force 
    188188 
    189189# Set the drive in slot 11 as a hot spare. 
    190190/opt/MegaRAID/storcli/storcli64 /c0/e32/s11 add hotsparedrive 
    191 }}} 
     191 
     192# Context dependent help is available 
     193/opt/MegaRAID/storcli/storcli64 /c0/e37/s15 help 
     194 
     195# The context dependent help is how I figured out how to show rebuild progress. 
     196# Drive status must be "Rbld" for this to do anything meaningful : 
     197 
     198/opt/MegaRAID/storcli/storcli64 /c0/e37/s15 show rebuild 
     199 
     200Controller = 0 
     201Status = Success 
     202Description = Show Drive Rebuild Status Succeeded. 
     203 
     204 
     205---------------------------------------------------------- 
     206Drive-ID    Progress% Status          Estimated Time Left  
     207---------------------------------------------------------- 
     208/c0/e37/s15 -         Not in progress -                    
     209---------------------------------------------------------- 
     210 
     211 
     212It looks like these LSI controllers will remove failed drives from that RAID automatically, as compared to 
     213the 3ware controllers, where you have to do it by hand. 
     214 
     215}}}