---------查看Linux服务器CPU详细情况--------------
#查看CPU的信息
[root@host ~]# cat /proc/cpuinfo
#查看物理CPU的个数
[root@host /]# cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l
#查看每个物理CPU的核数
[root@host /]# cat /proc/cpuinfo | grep "cpu cores" | uniq
#逻辑CPU的个数(逻辑CPU = 物理CPU个数*核数)
[root@host /]# cat /proc/cpuinfo | grep "processor" | wc -l
---------查看Linux服务器内存情况--------------
#查看内存使用情况
[root@host ~]# free -m total used free shared buffers cached Mem: 372 256 115 0 17 158 -/+ buffers/cache: 81 290 Swap: 509 0 509
>total:内存总数
>user:已使用内存数
>free:空闲内存数
>shared:多进程共享内存数
>buffers:缓冲内存数