Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get details of RAID configuration on Linux

Tags:

linux

How to get the details of RAID configuration in Linux ?

like image 804
Arunjith Avatar asked Dec 14 '10 15:12

Arunjith


2 Answers

This is real if this RAID is sofware.... In case of RAID hardware, you could type this command :

lspci -vv | grep -i raid

01:00.0 RAID bus controller: LSI Logic / Symbios Logic MegaRAID SAS 2208 [Thunderbolt] (rev 01)
        Kernel driver in use: megaraid_sas
        Kernel modules: megaraid_sas
like image 83
lolotux Avatar answered Sep 21 '22 07:09

lolotux


mdadm --detail /dev/md0   

(or whatever /dev/mdXXX you are using)

like image 23
Gaetano Mendola Avatar answered Sep 20 '22 07:09

Gaetano Mendola