Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

show Processor speed [closed]

Tags:

linux

I have a server with an AMD Opteron(tm) Processor 246 and a customised Linux kernel (2.6.9-100.ELhugemem) in it. When I check the processor using dmidecode, it displays a speed of 2000 MHz, whereas /proc/cpuinfo shows a speed of 1000MHz. Can anybody explain this and also give me a method to check the current CPU speed?

like image 525
user752949 Avatar asked May 13 '11 23:05

user752949


People also ask

How do I find my processor speed?

If you're wondering how to check your clock speed, click the Start menu (or click the Windows* key) and type “System Information.” Your CPU's model name and clock speed will be listed under “Processor”.

How do I lock my CPU clock speed?

Expand the Processor Power Management listing and then expand Minimum Processor State. Change this setting to 100%. This causes your CPU to kick in at 100 percent of its clock speed whenever it runs a process and to stay at 100 percent until the process is complete.

How can I check my processor speed using CMD?

Click Start, click Run, type cmd in the Open box, and then press ENTER. At the command prompt, type set, and then press ENTER. Note the string that is displayed next to PROCESSOR_IDENTIFIER.

How do I check my processor speed Windows 10?

Right-click on the Start button and click on Task Manager. 2. On the Task Manager screen, click on the Performance tab > click on CPU in the left pane. In the right-pane, you will be able to see Processor Speed and Number of Cores.


1 Answers

What you are seeing is probably due to frequency scaling. You can see the minimum, maximum and current cpu frequency by:

cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq
cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq
cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq

(Replace cpu0 as appropiate).

like image 102
ninjalj Avatar answered Sep 20 '22 15:09

ninjalj