最近由于要获取几台Linux服务器的硬件配置信息,就写了一个获取硬件配置信息的脚本代码,可以获取cpu核心数、内存大小、硬盘大小信息,代码如下所示:
#!/bin/bash
#
# Description:
# Used to get the hardware config information.
#
# History:
# tcpipstack, 2012/09/04, created.
#
#—————————————————————————————————————–
fn_get_cpu_info()
{
echo -e “\n CPU Num is: “`grep -c ‘model name’ /proc/cpuinfo`
echo “`cat /proc/cpuinfo | grep processor | wc -l`”
#echo `cat /proc/cpuinfo | grep ‘model name’ | sed ‘s’`
}
fn_get_disk_info()
{
echo -e “\n Disk Information: “
for x in `df -h | grep /dev | awk ‘{print $5 “-” $6 “-” $2 “-” $4}’ | sed ‘s/%//g’`
do
disk_status=(${x//”-“/” “})
echo “Disk Directory ${disk_status[1]} DiskTotal=${disk_status[2]} DiskUsed=${disk_status[3]}”
done
}
fn_get_mem_info()
{
MemTotal=`free -m | grep Mem | awk ‘{print $2}’`
echo -e “\n Memory is: ${MemTotal} MB “
}
#—————————————————————————————————————–
echo -e “\n ———–This Computer’s Hardware Config Information is: ———–\n”
fn_get_disk_info
fn_get_cpu_info
fn_get_mem_info
echo -e “\n ———–End ———–\n”
bash的登录与欢迎信息:/etc/issue,/etc/motd http://www.linuxidc.com/Linux/2014-08/105419.htm
Bash常用的几个配置文件 http://www.linuxidc.com/Linux/2014-08/105202.htm
Bash脚本15分钟进阶教程 http://www.linuxidc.com/Linux/2014-04/100750.htm
10个 Linux/Unix下 Bash 和 KSH shell 的作业控制实例 http://www.linuxidc.com/Linux/2014-03/98159.htm
Ubuntu下shell脚本运行异常:Bash和dash的区别 http://www.linuxidc.com/Linux/2013-10/91100.htm
Bash脚本之for语句if语句以及各种测试语句 http://www.linuxidc.com/Linux/2013-07/87922.htm
什么是Bash Shell的内建(build in)命令 http://www.linuxidc.com/Linux/2013-06/86039.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2014-11/109285.htm