查看CentOS的CPU内存信息及操作系统的版本信息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看CentOS的CPU内存信息及操作系统的版本信息相关的知识,希望对你有一定的参考价值。
经常要查看Linux服务器的CPU,内存信息以及操作系统版本等信息,总结一下常用的命令,以便以后查阅。
1.查看CPU型号(8个逻辑CPU)
[[[email protected] ~]# cat /proc/cpuinfo |grep "name" |cut -f2 -d: |uniq -c
8 Intel(R) Xeon(R) CPU E5506 @ 2.13GHz
2.查看物理CPU个数(两个4核CPU)
[[email protected] ~]# cat /proc/cpuinfo | grep "physical"| sort |uniq -c
8 address sizes : 40 bits physical, 48 bits virtual
4 physical id : 0
4 physical id : 1
3.查看CPU运行在多少位模式下面
[[email protected] ~]# getconf LONG_BIT
64
4.下面的结果大于0,说明支持64位操作系统
[[email protected] ~]# cat /proc/cpuinfo | grep flags | grep ‘ lm ‘ | wc -l
8
5.查看系统物理内存的大小
[[email protected] ~]# free
total used free shared buffers cached
Mem: 8168144 7387980 780164 0 689856 4014308
-/+ buffers/cache: 2683816 5484328
Swap: 4192924 24424 4168500
6.查看内存详细信息
[[email protected] ~]# cat /proc/cpuinfo
7.查看服务器安装的是哪个发行版本
[[email protected] ~]# cat /etc/redhat-release
CentOS release 5.5 (Final)
8.查看OS的版本是64位的还是32位的
[[email protected] ~]# uname -a
Linux mail 2.6.18-164.el5 #1 SMP Thu Sep 3 03:28:30 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
9.查看服务器的硬件信息
[[email protected]]# dmidecode |grep Vendor 处理器厂商
Vendor: Dell Inc.
[[email protected]]# dmidecode |grep Product 服务器型号
Product Name: PowerEdge R610
Product Name: 0RP59R
本文出自 “梦想照进现实” 博客,请务必保留此出处http://lookingdream.blog.51cto.com/5177800/1859684
以上是关于查看CentOS的CPU内存信息及操作系统的版本信息的主要内容,如果未能解决你的问题,请参考以下文章