Hi,
Is there a way I can compare the cpu speed of my different PC's?
command to compare cpu speed
Re: command to compare cpu speed
There are some tools you can use to check your CPU
The /proc/cpuinfo file contains details about individual cpu cores:
lscpu
lscpu is a small and quick command that does not need any options. It would simply print the cpu hardware details in a user-friendly format.
dmidecode
The dmidecode command displays some information about the cpu, which includes the socket type, vendor name and various flags.
If you want to compare the calculation power :
It is not a real benchmark test
From wikipedia:
BogoMips (from "bogus" and MIPS) is an unscientific measurement of CPU speed made by the Linux kernel when it boots to calibrate an internal busy-loop.
The /proc/cpuinfo file contains details about individual cpu cores:
Code: Select all
less /proc/cpuinfo
lscpu is a small and quick command that does not need any options. It would simply print the cpu hardware details in a user-friendly format.
dmidecode
The dmidecode command displays some information about the cpu, which includes the socket type, vendor name and various flags.
Code: Select all
sudo dmidecode -t 4
Code: Select all
cat /proc/cpuinfo | grep -ie mips -ie flops
From wikipedia:
BogoMips (from "bogus" and MIPS) is an unscientific measurement of CPU speed made by the Linux kernel when it boots to calibrate an internal busy-loop.