0

Linux オペレーティング システムと MIPS ハードウェアで CPU の最大速度を MHz 単位で決定したいと考えています。コマンドcat /proc/cpuinfoを使用すると、BogoMIPS=1000.00. と

`cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq`

動かない。どうすれば MHz に変換できますか。または、BogoMIPS に使用される単位は何ですか?? 前もって感謝します

4

2 に答える 2

3

Try this:

cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq

or this:

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

There should be similar files for the minimum frequency as well.

于 2013-04-26T14:26:10.510 に答える