软件包:

*  sys-power/cpupower
Latest version available: 4.13.
Latest version installed: 4.13.
Size of files: KiB
Homepage: https://www.kernel.org/
Description: Shows and sets processor power related values
License: GPL-

示例:

.-(/home/fh)----------------------------------------------------------------------------------------(root@xm)-
`--# cpupower --cpu all frequency-info --governors
analyzing CPU :
available cpufreq governors: performance powersave
analyzing CPU :
available cpufreq governors: performance powersave
analyzing CPU :
available cpufreq governors: performance powersave
analyzing CPU :
available cpufreq governors: performance powersave
analyzing CPU :
available cpufreq governors: performance powersave
analyzing CPU :
available cpufreq governors: performance powersave
analyzing CPU :
available cpufreq governors: performance powersave
analyzing CPU :
available cpufreq governors: performance powersave
.-(/home/fh)----------------------------------------------------------------------------------------(root@xm)-
`--# cpupower --cpu all frequency-info --policy
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
analyzing CPU :
current policy: frequency should be within MHz and 3.40 GHz.
The governor "powersave" may decide which speed to use
within this range.
.-(/home/fh)-----------------------------------------------------------------------------------------------------------------------------------------(root@xm)-
`--# cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor powersave
powersave
powersave
powersave
powersave
powersave
powersave
powersave
.-(/home/fh)-----------------------------------------------------------------------------------------------------------------------------------------(root@xm)-
`--# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
powersave
.-(/home/fh)-----------------------------------------------------------------------------------------------------------------------------------------(root@xm)-
`--# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
performance powersave

cpupower:Shows and sets processor power related values的更多相关文章

  1. 四:redis的sets类型 - 相关操作(有序和无序集合)

    ================四十五种(有序和无序集合):sets种类(它是一个集)=============      简介:  set它代表的集合.加入是随意添加----->无序集合    ...

  2. 02:PostgreSQL Character Sets

    在利用postGIS导入shapefile文件到postgresql数据库的时候,老是提示字符串的问题,或者是乱码,试了好几种都不行,于是度娘之.... 使用默认的UTF8,提示信息是:建议使用LAT ...

  3. 【算法•日更•第三十九期】迭代加深搜索:洛谷SP7579 YOKOF - Power Calculus 题解

    废话不多说,直接上题: SP7579 YOKOF - Power Calculus 题意翻译 (略过没有营养的题干) 题目大意: 给出正整数n,若只能使用乘法或除法,输出使x经过运算(自己乘或除自己, ...

  4. 欧拉工程第60题:Prime pair sets

    题目链接 五个数,任意两个数的任意链接后的数还是质数 满足这个条件的最小五个数的和是多少? 结果:26033 纯暴力破解: package projecteuler51to60; import jav ...

  5. linux commands

    abrt-cli --since ;查看abrt捕捉的异常 alias ;别名,alias rm='rm -i':使用“ \rm ” 使用原命令 alsamixer ;图形音量调节,q 增加左声道, ...

  6. PatentTips - Optimizing power usage by factoring processor architectural events to PMU

    BACKGROUND Processor power consumption has become a major issue in recent years. The current trend o ...

  7. Method and apparatus for transitioning between instruction sets in a processor

    A data processor (104) is described. The data processor (104) is capable of decoding and executing a ...

  8. 第一篇:Power BI数据可视化概述

    前言 "可视化之工具,可爱者甚蕃.统计学家独爱R,自Python来,世人盛爱matplotlib.余独爱Power BI之出微软而不染(免费),濯Office而不妖(够精简).......& ...

  9. MongoDB高可用架构:Replica Sets+Sharding

    MongoDB的sharding解决了海量存储和动态扩容的问题.但是遇到单点故障就显得无能为力了.MongoDB的副本集可以很好的解决单点故障的问题.所以就有了Sharding+Replica Set ...

随机推荐

  1. centos nginx 设置开启启动

    1 vi /etc/init.d/nginx #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkco ...

  2. 解读vue filter

    1.全局filter, 全局的过滤一般在main.js里面使用 <div id="app"> <div> {{testVal | filVal(10,30) ...

  3. P2747 [USACO5.4]周游加拿大Canada Tour

    题目描述 你赢得了一场航空公司举办的比赛,奖品是一张加拿大环游机票.旅行在这家航空公司开放的最西边的城市开始,然后一直自西向东旅行,直到你到达最东边的城市,再由东向西返回,直到你回到开始的城市.除了旅 ...

  4. Springboot消除switch-case方法

    Springboot消除switch-case方法 背景 最近,在使用springboot开发一个接口的时候,需要根据接收的请求事件类型,去执行不同的操作,返回不同的结果,基本逻辑如下: String ...

  5. wait()和sleep()、sleep()和yield()的区别

    wait()和sleep()的区别主要表现在一下几个方面: 原理不同.sleep()方法是Thread类的静态方法,是线程用来控制自身流程的.它会使线程暂停执行一段时间,把执行机会让给其他线程,等到时 ...

  6. java定义类

    package java04; /* * 定义一个类,用来模拟“学生”,其中包含量两个组合部分 * * 格式: * public class ClassName{ * //成员变量 * //成员方法 ...

  7. demo板 apt-get install stress

    demo 那个网口 没有绑定mac 大电脑绑定了mac 大电脑上网认证系统:http://1.1.1.2 大电脑mac:6C-4B-90-3C-D5-7B 将demo板的mac改为大电脑mac ifc ...

  8. C++ KMP文本匹配

    代码如下: 环境为VC #include <iostream> #include <algorithm> #include <string> #include &l ...

  9. onkeyup的使用(将输入值为非数字的字符替换为空)

    onkeyup:当输入值的键盘抬起时触发这个事件. 例如: onkeyup="this.value=this.value.replace(/\D/g,'') 这是个正则式验证,用来验证输入值 ...

  10. python自动刷新抢火车票

    #!/usr/bin/env python #-*- coding: utf-8 -*- """ 火车票 可以自动填充账号密码,同时,在登录时,也可以修改账号密码 然后手 ...