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 使用什么单位?提前致谢
尝试这个:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
或这个:
cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq
最低频率也应该有类似的文件。
该信息应在 cpuinfo 下。如果你输入它会给你什么:
cat /proc/cpuinfo | grep Hz