FREQUENTLY ASKED QUESTIONS (Linux)
Q: How to find processor and memory (RAM) information in linux systems?
Find Processor details
You can find the CPU information with the following commands. You can find CPU Architechure, number of CPUs, Clock speed, number of cores, L2 cache memory, Vendor, CPU family, flags, stepping, fpu, cpuid level, wp, TLB size, address sizes, power management, etc.
[root@server ~]# cat /proc/cpuinfo
Q: How to find processor and memory (RAM) information in linux systems?
Find Processor details
You can find the CPU information with the following commands. You can find CPU Architechure, number of CPUs, Clock speed, number of cores, L2 cache memory, Vendor, CPU family, flags, stepping, fpu, cpuid level, wp, TLB size, address sizes, power management, etc.
[root@server ~]# cat /proc/cpuinfo
and
[root@server ~]# lscpu
Find Memory (RAM) Details
Finding total memory, free and used memory, cached memory, inactive and active, swap space, Buffers, etc.
[root@server ~]# cat /proc/meminfo
and
[root@server ~]# free
0 comments:
Post a Comment