Linux系统中一切皆文件
在Linux系统中,提供了proc文件系统显示系统的软硬件信息。如果想了解系统中CPU的提供商和相关配置信息,则可以通过/proc/cpuinfo
文件得到。
使用以下命令来读取/proc/cpuinfo
文件,查看cpu的信息
cat /proc/cpuinfo
输出:
processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 142 model name : Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz stepping : 9 microcode : 0xd6 cpu MHz : 2904.000 cache size : 4096 KB physical id : 0 siblings : 1 core id : 0 cpu cores : 1 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 22 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon nopl xtopology tsc_reliable nonstop_tsc eagerfpu pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 avx2 smep bmi2 invpcid rdseed adx smap clflushopt xsaveopt xsavec xgetbv1 arat md_clear spec_ctrl intel_stibp flush_l1d arch_capabilities bogomips : 5808.00 clflush size : 64 cache_alignment : 64 address sizes : 45 bits physical, 48 bits virtual power management:
相关说明:
如何不想获取cpu的全部信息,只是想要查看cpu型号,可以使用以下命令:
cat /proc/cpuinfo | grep 'model name' |uniq
查看物理CPU个数
cat /proc/cpuinfo | grep 'cpu cores' |uniq
查看系统内核版本
uname -r
查看系统的发行版本
cat /etc/redhat-release
more info.log
分页查看文件内容
less -N info.log
带行号查看文件内容
实时查看文档变动:
查找内容:
/keyword 向下查找
?keyword 向上查找