1,查看服务器型号、序列号: [root@localho ~]#dmidecode|grep "System Information" -A9|egrep "Manufacturer|Product|Serial" Manufacturer: Dell Inc. Product Name: PowerEdge R515 Serial Number: 7P9H83X 2.Linux 查看内存的插槽数,已经使用多少插槽.每条内存多大 [root@localhost ~]#dmidecode|grep -A5 "Memory Device"|grep Size|grep -v Range Size: 4096 MB Size: 4096 MB Size: No Module Installed Size: No Module Installed Size: 4096 MB Size: 4096 MB Size: No Module Installed Size: No Module Installed 3.Linux 查看内存的频率 [root@localhost ~]#dmidecode|grep -A16 "Memory Device"|grep ‘Speed‘ Speed: 1600 MHz (0.6 ns) Speed: 1600 MHz (0.6 ns) Speed: Unknown Speed: Unknown Speed: 1600 MHz (0.6 ns) Speed: 1600 MHz (0.6 ns) Speed: Unknown Speed: Unknown # cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 8 Intel(R) Xeon(R) CPU E5410 @ 2.33GHz 查看物理cpu个数 grep ‘physical id‘ /proc/cpuinfo | sort -u 查看核心数量 grep ‘core id‘ /proc/cpuinfo | sort -u | wc -l 查看线程数 grep ‘processor‘ /proc/cpuinfo | sort -u | wc -l |
原文:http://4519154.blog.51cto.com/4509154/1890855