I am new to the world of Linux and Ubuntu. I want say get maximum information about CPU. (cpufreq , no. of cores, no. of threads per core, instruction set, size of caches, instruction set, virtualization etc.)
I would prefer a method which works on all Linux distributions over Ubuntu specific approaches.
lscpu
seems to give only few info, I especially miss the model name here:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 2
Core(s) per socket: 2
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 69
Stepping: 1
CPU MHz: 989.531
BogoMIPS: 4788.74
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 3072K
NUMA node0 CPU(s): 0-3
Running sudo lscpu
returns same.
cat /proc/cpuinfo
. – edwinksl Aug 03 '16 at 11:34lscpu
. So what information do you need additionally? – Hi-Angel Aug 03 '16 at 11:51lscpu
on my machine does show the model number. I am not sure why yours doesn't. – edwinksl Aug 03 '16 at 12:11lscpu | grep "Model name"
? – Hi-Angel Aug 03 '16 at 12:13lscpu | grep "Model name"
. – foxtrot9 Aug 03 '16 at 12:15sudo lshw -c cpu
– Byte Commander Aug 03 '16 at 12:16sudo lscpu | grep "Model name"
– Hi-Angel Aug 03 '16 at 12:20sudo lscpu | grep "Model name"
– foxtrot9 Aug 03 '16 at 12:22lscpu
. Right now I have a terminal chrooted into Archlinux, and I was runninglscpu
there, and I saw both model number and frequencies (current, max, min). But I just ran the same command in host Ubuntu 14.04, and I doesn't see those either. So, turns out the problem is that you haveutil-linux
package too old. On the chrooted system, where I see that, I have2.28-1
version. – Hi-Angel Aug 03 '16 at 12:33