美文网首页
linux CPU常用信息查看

linux CPU常用信息查看

作者: 吃吃吃_就知道吃 | 来源:发表于2022-06-15 16:30 被阅读0次
awk 'BEGIN{FS="[:\t]";OFS="\t";print "核\t主频\t缓存\t线程数\t核号\t物理核数\tMIPS\t刷新缓存"}{a[$1]=$NF;if($1 == "power management"){print a["processor"],strtonum(a["cpu MHz"])/1000"GHz",strtonum(a["cache size"])/1024"M",a["siblings"],a["core id"],a["cpu cores"],a["bogomips"],a["clflush size"]}}' /proc/cpuinfo | column -t

结果:


image.png

相关文章

网友评论

      本文标题:linux CPU常用信息查看

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