主机评测
Linux安装调节CPU频率工具cpupower
不安装工具底层的方法
cat /proc/cpuinfo | grep MHz
echo performance | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor >/dev/null
下面是安装cpupower方法
apt-get install linux-cpupower -y 或者 apt-get install -y linux-tools-$(uname -r)
cpupower -c all frequency-set -g performance # 设置所有CPU为性能模式
cpupower -c all frequency-set -g powersave #设置所有CPU为节能模式
cpupower -c all frequency-info #查看当前所有CPU的信息
watch -n 1 cpupower monitor #CPU实时频率查看