服务器硬件采集,DELL服务器硬件信息采集SHELL脚本

最近需要做资产列表,要采集DELL服务器的硬件信息,包括如下信息:

1、操作系统信息(类型,版本,内核,平台,主机名)

2、主板信息(厂商,机型,序列号)

3、CPU信息(型号,个数,物理核数)

4、内存(条数,单条容量)

5、磁盘(个数,单个容量,磁盘类型,Raid级别)

执行前请先安装MegaRAID,为了提高工作效率,我们使用SHELL脚本来实现,如下:#!/bin/sh

#get os information

function get_os_info() {

release=`cat /etc/redhat-release | awk ‘{print $1"_"$3}‘`

kname=`uname -s`

nodename=`uname -n`

kernal=`uname -r`

bit=`uname -i`

printf "OS_RELEASE: $release"_"$bit\n"

printf "OS_DETAIL: $kname $nodename $kernal $bit\n"

}

get_os_info

#get vendor, model, sn...

function motherboard() {

vendor=`dmidecode -t 1|grep "Manufacturer"|awk ‘{print $2}‘`

model=`dmidecode -t 1|grep "Product"|awk ‘{print $4}‘`

sn=`dmidecode -t 1|grep "Serial" |awk ‘{print $3}‘`

printf "MODEL: $vendor $model\n"

printf "SN: $sn\n"

}

motherboard

function memory() {

count=`dmidecode  -q -t 17 2 |grep  "Size" |grep -v "No Module Installed"|awk ‘{print $2}‘|uniq -c|awk ‘{print $1}‘`

capacity=`dmidecode  -q -t 17 2 |grep  "Size" |grep -v "No Module Installed"|awk ‘{print $2}‘|uniq -c|awk ‘{print $2}‘`

capacity=`expr $capacity / 1024`

printf "MEM: $count"*"$capacity"G"\n"

}

memory

function cpuinfo() {

cpu_model=`cat /proc/cpuinfo|grep "model name"|head -1|awk -F: ‘{print $2}‘`

cpu_count=`cat /proc/cpuinfo|grep "core id"|grep "0"|uniq -c|awk ‘{print $1}‘`

cpu_total_cores=`cat /proc/cpuinfo|grep "processor"|wc -l`

single_cores=`expr $cpu_total_cores / $cpu_count`

printf "CPU:$cpu_model($cpu_count"*"$single_cores"Cores")\n"

}

cpuinfo

function diskinfo() {

raidlevel=`/opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -Lall -aALL |grep "RAID"|awk ‘{print $3}‘|cut -b 9-9`

disknumber=`/opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -Lall -aALL | grep "Drives"|awk -F ":" ‘{print $2}‘`

disktype=`/opt/MegaRAID/MegaCli/MegaCli64 -PDList -aALL | grep "PD Type"|head -1|awk -F: ‘{print $2}‘`

diskcapacity=`/opt/MegaRAID/MegaCli/MegaCli64 -PDList -aALL | grep "Raw Size" | head -1 | awk ‘{print $3}‘`

printf "DISK: $disknumber"*"$diskcapacity"GB"$disktype (Raid Level: $raidlevel)\n"

}

diskinfo

脚本执行结果如下:OS_RELEASE: CentOS_6.5_x86_64

OS_DETAIL: Linux appsrv 2.6.32-431.el6.x86_64 x86_64

MODEL: Dell R730

SN: CDFGHJL

MEM: 4*8G

CPU: Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz(2*8Cores)

DISK: 2*279.396GB SAS (Raid Level: 1)

原文:http://crazy123.blog.51cto.com/1029610/1712254

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值