Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Linux オペレーティング システムと MIPS ハードウェアで CPU の最大速度を MHz 単位で決定したいと考えています。コマンドcat /proc/cpuinfoを使用すると、BogoMIPS=1000.00. と
cat /proc/cpuinfo
BogoMIPS=1000.00
`cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq`
動かない。どうすれば MHz に変換できますか。または、BogoMIPS に使用される単位は何ですか?? 前もって感謝します
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.