美文网首页
Ubuntu常用命令

Ubuntu常用命令

作者: 一席桑麻 | 来源:发表于2018-08-06 14:56 被阅读0次

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常用命令

      本文链接:https://www.haomeiwen.com/subject/fbfgvftx.html