1.查询CPU个数
cat /proc/cpuinfo | grep "physical id" | sort -n | uniq | wc -l
或者
lscpu | grep "CPU socket(s)" | sort -n | uniq | wc -l
CPU(s): 4 <-------表示4个cpu
On-line CPU(s) list: 0-3
Thread(s) per core: 1
<-------表示一个核心一个线程,不支持超线程
Core(s) per socket: 4
<-------表示一个物理cpu有4个核
CPU socket(s): 1
<-------表示有多少个物理cpu
CPU(s): 12
On-line CPU(s) list: 0-11
Thread(s) per core: 2
<-------表示一个核心2个线程
Core(s) per socket: 6
<-------
示一个物理cpu有6个核心
CPU socket(s): 1
<-------表示有多少个物理cpu
显示的cpu:core(s)per socket * CPU socket(s)* Thread(s)per core
或者
[root @localhost ~]# lscpu -p
# The following is the parsable format, which can be fed to other
# programs. Each different item in every column has an unique ID
# starting from zero.
# CPU,Core,
Socket,Node,,L1d,L1i,L2,L3
0,0,
0,0,,0,0,0,0
1,1,
0,0,,1,1,1,0
2,2,
0,0,,2,2,2,0
3,3,
0,0,,3,3,3,0
红色部分就表示cpu个数
2.查询服务器型号
dmidecode | grep "Product Name"
或
dmidecode -s system-product-name
4.查看CPU信息<型号>
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq
5.查看CPU运行位数
# getconf LONG_BIT
32
(说明当前CPU运行在32bit模式下, 但不代表CPU不支持64bit)
# cat /proc/cpuinfo | grep flags | grep 'lm' | wc -l
8
(结果大于0, 说明支持64bit计算. lm指long mode, 支持lm则是64bit)
6.查看当前操作系统内核信息
uname -a
7.查看网卡速率
ethtool eth0
8.查看当前操作系统发行版信息
lsb_release -d
9.查看内存的插槽数,已经使用多少插槽.每条内存多大
dmidecode|grep -P -A5 "Memory\s+Device" | grep Size |grep -v Range | cat -n
10. 查看内存的频率
dmidecode|grep -A16 "Memory Device"|grep 'Speed' | cat -n
11.查看服务器出厂编号<适用于DELL 。 LENOVO则显示不出来>
dmidecode -s chassis-serial-number
12.对于DELL服务器的信息可通过DSET获取
DSET工具2.2使用说明(Windows版):
http://support1.ap.dell.com/cn/zh/forum/thread.asp?fid=20&tid=276325
DSET工具2.1使用说明(Linux版):
http://support1.ap.dell.com/cn/zh/forum/thread.asp?fid=20&tid=276581
13.For Windows(win2003 winXP以上版本):
命令1:wmic bios get serialnumber(获取SN|不适用于LENOVO机器)
命令2:wmic csproduct get name,identifyingnumber(获取SN和机型)
以下为一台LENOVO R510 G7 Windows方面的一些信息查询
通过鲁大师查询到的一些信息
--------[ 概览 ]----------------------------------------------------------------------------------
电脑型号 联想 WQ R510 G7 Main Server Chassis
操作系统 Windows 2003 Enterprise Edition 32位 SP2 ( DirectX 9.0c )
处理器 英特尔 Xeon(至强) E5504 @ 2.00GHz
主板 泰安 Tank GT20-B7002LNV (英特尔 5520/5500/X58 - ICH10R)
内存 2 GB ( 1067MHz )
主硬盘 富士通 MBA3147RC
显卡 ASPEED AST2000 ( 8 MB / ASPEED )
光驱 东芝-三星 CDDVDW TS-L633B DVD刻录机
网卡 英特尔 82574L Gigabit Network Connection
--------[ 主板 ]----------------------------------------------------------------------------------
主板型号 泰安 Tank GT20-B7002LNV
芯片组 英特尔 5520/5500/X58 - ICH10R
序列号 empty
BIOS American Megatrends Inc. 'V1.5 '
制造日期 07/08/2009
--------[ 处理器 ]--------------------------------------------------------------------------------
处理器 英特尔 Xeon(至强) E5504 @ 2.00GHz
速度 2.00 GHz (133 MHz x 15.0)
处理器数量 核心数: 4 / 线程数: 4
核心代号 Gainestown
生产工艺 45 纳米
插槽/插座 Socket B (LGA 1366)
一级数据缓存 2 x 32 KB, 8-Way, 64 byte lines
一级代码缓存 2 x 32 KB, 4-Way, 64 byte lines
二级缓存 2 x 256 KB, 8-Way, 64 byte lines (速度: 2000 MHz)
三级缓存 4 MB, 16-Way, 64 byte lines
特征 MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, EM64T, EIST
--------[ 硬盘 ]----------------------------------------------------------------------------------
产品 富士通 MBA3147RC
转速 15000 转/分
固件 0103
--------[ 内存 ]----------------------------------------------------------------------------------
DIMM0 1067MHz 1GB
序列号: SerNum00
模块位宽: 64 bits
DIMM2 1067MHz 1GB
序列号: SerNum02
模块位宽: 64 bits