Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cpufreqd-get(1) [debian man page]

cpufreqd-get(1) 														   cpufreqd-get(1)

NAME
cpufreqd-get - Issues "get" commands to cpufreqd. SYNTAX
cpufreqd-get [-l] PARAMETERS
-l list applied Profiles for all cpus. DESCRIPTION
cpufreqd-get issues a command to cpufreqd and reads the returned output. When run without arguments it will issue a "LIST_PROFILES" com- mand, useful for usage with cpufreqd-set. See the PARAMETERS above for more. COMMANDS
LIST_PROFILES cpufreqd-get Name (#1): On Demand High Active on CPU#: 0, 1 Governor: ondemand Min freq: 1000000 Max freq: 1833000 Name (#2): On Demand Low Governor: ondemand Min freq: 1000000 Max freq: 1333000 LIST_APPLIED_PROFILES cpufreqd-get -l CPU#0: "High Speed 1" ondemand 731500-997500 Near the name (between the parenthesis) you can find the index number to use when setting a specific profile with cpufreqd-set. AUTHORS
Mattia Dongili <malattia@linux.it> SEE ALSO
cpufreqd-set(1), cpufreqd(8), cpufreqd.conf(5) Mattia Dongili 2.2.0 cpufreqd-get(1)

Check Out this Related Man Page

cpufreq-set(1)															    cpufreq-set(1)

NAME
cpufreq-set - A small tool which allows to modify cpufreq settings. SYNTAX
cpufreq-set [options] DESCRIPTION
cpufreq-set allows you to modify cpufreq settings without having to type e.g. "/sys/devices/system/cpu/cpu0/cpufreq/scaling_set_speed" all the time. OPTIONS
-c --cpu <CPU> number of CPU where cpufreq settings shall be modified. -d --min <FREQ> new minimum CPU frequency the governor may select. -u --max <FREQ> new maximum CPU frequency the governor may select. -g --governor <GOV> new cpufreq governor. -f --freq <FREQ> specific frequency to be set. Requires userspace governor to be available and loaded. -r --related modify all hardware-related CPUs at the same time -h --help Prints out the help screen. REMARKS
Omitting the -c or --cpu argument is equivalent to setting it to zero. The -f FREQ, --freq FREQ parameter cannot be combined with any other parameter except the -c CPU, --cpu CPU parameter. FREQuencies can be passed in Hz, kHz (default), MHz, GHz, or THz by postfixing the value with the wanted unit name, without any space (fre- quency in kHz =^ Hz * 0.001 =^ MHz * 1000 =^ GHz * 1000000). On Linux kernels up to 2.6.29, the -r or --related parameter is ignored. FILES
/sys/devices/system/cpu/cpu*/cpufreq/ /proc/cpufreq (deprecated) /proc/sys/cpu/ (deprecated) AUTHORS
Dominik Brodowski <linux@brodo.de> - author Mattia Dongili<malattia@gmail.com> - first autolibtoolization SEE ALSO
cpufreq-info(1) Mattia Dongili 0.1 cpufreq-set(1)
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Separate a portion of text file into another file

Hi, I have my input as follows : I have given two entries- From system Mon Aug 1 23:52:47 2005 Source !100000006!: Impact !100000005!: High Status ! 7!: New Last Name+!100000001!: First Name+ !100000003!: ... (4 Replies)
Discussion started by: srikanth_ksv
4 Replies

2. Windows & DOS: Issues & Discussions

Exceed On Demand Issue

I have Exceed on Demand V3.2 (I know it's older). I have multiple monitors at my desk and can move the x-windows across both monitors but can only type in monitor(A). I can resize windows in both monitors(A & B) and can clearly tell "window focus" is gained in the window for the monitor(B) for... (2 Replies)
Discussion started by: rcarnesiii
2 Replies

3. Solaris

Scripts - Processes, CPU, Max. Connections

Hi all, Can any one please tell me how to find these in Unix (Commands) 1. Too many processes connected to the server. 2. High Utilization of CPU. 3. Maximum Number of connections with the database. OS: Sun Solaris 5.8 DB : Oracle 10g Thanks and Regards, Prashanth (1 Reply)
Discussion started by: prashanth_gs
1 Replies

4. Shell Programming and Scripting

Strange Logic

I am trying to read a file and skip few records based upon the following two columns. Pipe delimiter used between the two columns. Column1|Column2 Property|CutOff Target|11111 Min|9999 Max|10000 Comment|This is a test Property|Weight Target|222 Min|3434 Max|77777 UOM|mm ... (5 Replies)
Discussion started by: ganesh123
5 Replies

5. Linux

How to find CPU Speed of zLinux

Need to find CPU Speed of zLinux. The commands like cat /proc/cpuinfo and /usr/bin/cpufreq-info does not gave me the expected results. /usr/bin/cpufreq-info prints the .... analyzing CPU 0: no or unknown cpufreq driver is active on this CPU analyzing CPU 1: no or unknown cpufreq... (1 Reply)
Discussion started by: surajb
1 Replies

6. AIX

High Runqueue (R) LOW CPU LOW I/O Low Network Low memory usage

Hello All I have a system running AIX 61 shared uncapped partition (with 11 physical processors, 24 Virtual 72GB of Memory) . The output from NMON, vmstat show a high run queue (60+) for continous periods of time intervals, but NO paging, relatively low I/o (6000) , CPU % is 40, Low network.... (9 Replies)
Discussion started by: IL-Malti
9 Replies

7. AIX

Profile Max CPU Setting

I have a system with the following settings: min:0.10 Assigned: 2.0 Max: 6.0 Partition is uncapped weight is 128. I would like to know if even if this is uncapped, is the max it can use 6? The actual pool has 16. I remember reading about this somewhere but I don't remember can anyone... (3 Replies)
Discussion started by: techy1
3 Replies

8. Shell Programming and Scripting

Using freq in script

Hi, I have a requirement where I need to check a column data in a fixed length file. Sample file. 1 10 20150201 TEST1 TEST1 2 20 20140201 TEST2 TEST2 3 30 20150810 TEST3 TEST3 4 10 20150201 TEST4 TEST4 5 10 20150201 TEST5 TEST5 6 30 0 TEST6 TEST6 7 20 20140201 TEST7 TEST7 8... (6 Replies)
Discussion started by: member2014
6 Replies

9. UNIX for Beginners Questions & Answers

How to print only number using awk command in Linux ?

Now I'm trying summary sar data. CPU , Memory , Traffic , TPS (Min Max value) CPU is okay using below command. $ sar -p | awk '{gsub(//,"")}1' | awk 'BEGIN {min=1000000; max=0;};\ { if($7<min && $7 != "") min = $7; if($7>max && $7 != "") max = $7; } END {print min, max}' 98.93 99.55 ... (1 Reply)
Discussion started by: tom8254
1 Replies