Ubuntu常用命令

free -m

                      total       used       free     shared    buffers     cached
Mem:               496        457         38          0          8            104
-/+ buffers/cache:           344        151
Swap:              510        156        354

其中-m代表以兆计算

查看CPU信息(型号)

cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c

  8  Intel(R) Xeon(R) CPU            E5410   @ 2.33GHz 

(看到有8个逻辑CPU, 也知道了CPU型号)

cat /proc/cpuinfo | grep physical | uniq -c

  4 physical id      : 0 

  4 physical id      : 1 

(说明实际上是两颗4核的CPU)

你可能感兴趣的:(Ubuntu常用命令)