linux 檢視raid下物理硬體數量

2021-12-30 12:11:28 字數 3159 閱讀 9721

物理cpu數量 ?cat /proc/cpuinfo ?cpu資訊 physical id 為個數

物理記憶體數量 ?dmidecode | grep -a16 "memory device$"

物理硬碟數量

cat /proc/scsi/scsi

df -h

fdisk -l

smartctl –all /dev/sda

都不能知道實際有多少塊硬碟,這時需要借助外部工具

解壓後-rwxrwxrwx 1 root root 1588725 5月 ?17 2011 lib_utils-1.00-09.noarch.rpm

-rwxrwxrwx 1 root root 1272097 10月 24 2011 megacli-8.02.21-1.noarch.rpm

-rw-r--r-- 1 root root ? 14058 4月 ?17 16:52 megasas.log

-rwxrwxrwx 1 root root ? ?2683 10月 24 2011 readme.txt

-rwxrwxrwx 1 root root ? ?7404 4月 ?13 2012 run-linux-perc.sh

先安裝 lib_utils-1.00-09.noarch.rpm 然後安裝 megacli-8.02.21-1.noarch.rpm

安裝後命令 ?/opt/megaraid/megacli/megacli64

megacli常用引數介紹?

megacli -adpcount 【顯示介面卡個數】?

megacli -adpgettime –aall 【顯示介面卡時間】?

megacli -adpallinfo -aall 【顯示所有介面卡資訊】?

megacli -ldinfo -lall -aall 【顯示所有邏輯磁碟組資訊】?

megacli -pdlist -aall 【顯示所有的物理資訊】?

megacli -adpbbucmd -getbbustatus -aall |grep 『charger status』 【檢視充電狀態】?

megacli -adpbbucmd -getbbustatus -aall【顯示bbu狀態資訊】?

megacli -adpbbucmd -getbbucapacityinfo -aall【顯示bbu容量資訊】?

megacli -adpbbucmd -getbbudesigninfo -aall 【顯示bbu設計引數】?

megacli -adpbbucmd -getbbuproperties -aall 【顯示當前bbu屬性】?

megacli -cfgdsply -aall 【顯示raid卡型號,raid設定,disk相關資訊】

例如:[root@localhost linux]# /opt/megaraid/megacli/megacli64 ?-pdlist -aall

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

adapter #0

enclosure device id: 32

slot number: 0

drive's postion: diskgroup: 0, span: 0, arm: 0

enclosure position: 0

device id: 0

wwn: 5000cca02a34d727

sequence number: 2

media error count: 0

other error count: 0

predictive failure count: 0

last predictive failure event seq number: 0

pd type: sas

raw size: 279.396 gb [0x22ecb25c sectors]

non coerced size: 278.896 gb [0x22dcb25c sectors]

coerced size: 278.875 gb [0x22dc0000 sectors]

firmware state: online, spun up

device firmware level: e516

shield counter: 0

successful diagnostics completion on : ?n/a

sas address(0): 0x5000cca02a34d725

sas address(1): 0x0

connected port number: 0(path0)?

inquiry data: hitachi hus156030vls600 e516lvvy1w0n ? ? ? ? ? ?

fde enable: disable

secured: unsecured

locked: unlocked

needs ekm attention: no

foreign state: none?

device speed: 6.0gb/s?

link speed: 6.0gb/s?

media type: hard disk device

drive temperature :38c (100.40 f)

pi eligibility: ?no?

drive is formatted for pi information: ?no

pi: no pi

drive's write cache : disabled

port-0 :

port status: active

port's linkspeed: 6.0gb/s?

port-1 :

port status: active

port's linkspeed: unknown?

drive has flagged a s.m.a.r.t alert : no

如上圖:

device id: 0 顯示數量從0計數

wwn: 5000cca02a34d727 防偽

raw size: 279.396 gb 硬碟容量

inquiry data: hitachi hus156030vls600 e516lvvy1w0n ? ? ? ? 硬碟資訊

device speed: 6.0gb/s?

檢視Linux系統下Raid資訊

軟體raid 只能通過linux系統本身來檢視 cat proc mdstat 可以看到raid級別,狀態等資訊。硬體raid 最佳的辦法是通過已安裝的raid廠商的管理工具來檢視,有cmdline,也有圖形介面。如adaptec公司的硬體卡就可以通過下面的命令進行檢視 usr dpt raidut...

Linux 系統下檢視raid資訊,以及磁碟資訊

有時想知道伺服器上有幾塊磁碟,如果沒有做raid,則可以簡單使用fdisk l 就可以看到。但是做了raid呢,這樣就看不出來了。那麼如何檢視伺服器上做了raid?軟體raid 只能通過linux系統本身來檢視 cat proc mdstat可以看到raid級別,狀態等資訊。硬體raid 最佳的辦法...

linux 系統下檢視raid資訊,以及磁碟資訊

mdadm e dev sd a z 若顯示 mdadm no md superblock detected,沒有檢測到任何超級塊。所以,這三個磁碟中沒有定義 raid lspci grep i raid 檢視硬體是否支援raid 使用smartctl a dev sdxx檢視該磁碟是否進行過rai...