View RSS Feed

James' openSUSE Bash Scripting (and other things) Blog - Your Comments are Welcome!

C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils package

Rating: 2 votes, 5.00 average.
by , 09-Jul-2011 at 08:55 (9246 Views)
I have written a bash script file designed to work with the cpufrequtils package and the programs cpufreq-info (for reading CPU speed info) and cpufreq-set (to set CPU speed governor and frequency).



This is my third attempt at writing a bash shell to interface with these two packages. After creating a blog on how to use YaST to set your CPU speed with yast-power-management you can read about here: YaST Power Management - Control Your CPU Energy Usage How To & FAQ - Blogs - openSUSE Forums, several forum users indicated they used the cpufreq utilities instead. So, I decided to see if any sort of value added bash script could be put together to work with this program set. Changes made to your CPU speed only last until you reboot your computer, but you may find the information and function it provides to be useful. Your speed selection options are as follows:



If you select USERSPACE, you can then pick a fixed speed from those your CPU supports:



You can run cfu with the --help request to get a list of startup commands for you to use:



Version 1.22 of C.F.U. (works with openSUSE 12.2 & 12.3) Adds new features and bug fixes:

1. New Help Display is included
2. C.F.U. includes menu automation. Type cfu -h for more details
3. Better Detection for the cpufrequtils to work and to be installed
4. Better detection of available speeds usable on your PC
5. C.F.U. Now creates a KDE Desktop and Application icon for you. New settings at the top of the script control these actions.
6. The C.F.U. color engine has been updated to work when no desktop has been loaded.
7. Works with new openSUSE 12.3 lsb release name of: opensuseproject



To use the bash script file cfu, you need to download the following text from SUSE Paste (Actual Link is shown below) into a text editor like kwrite:

C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils packagee

Save the text as the file cfu in the /home area bin folder (example is: /home/username/bin, also known as ~/bin). It is possible to directly download cfu from a terminal session (You must delete or rename the old version first):

Code:
rm ~/bin/cfu
Code:
wget -nc http://paste.opensuse.org/view/download/92162247 -O ~/bin/cfu
This script must be marked executable to be used. Please run the following Terminal command:

Code:
chmod +x ~/bin/cfu
It is even possible to string all three of these commands together as one. Copy the following command, open up a terminal session, paste it in and press enter:

Code:
rm ~/bin/cfu ; wget -nc http://paste.opensuse.org/view/download/92162247 -O ~/bin/cfu ; chmod +x ~/bin/cfu
To use cfu, open a terminal session and type in:

Code:
cfu <OR> cfu -h
If the cpufrequtils package is not installed, you will be prompted to install it. In order to change your governor or CPU speed, you must supply the root user password. Same goes for installing the cpufrequtils package if it is missing. As always, I would love to hear about any comments or problems you might have using cfu.

Thank You,

Blogs: asroot : Bash : Packet Filter : C.F.U. : GPU's : fewrup : F.S.M. : H.I. : nVIDIA : LNVHW : N.S.F. : S.A.K.C. : MMCHECK
S.A.S.I. : S.C.L.U. : S.G.T.B. : S.K.I.M. : S.L.A.V.E. : S.L.R.C. : S.T.A.R.T. : S.U.F.F. : SYSEdit : systemd : YaST Power

Submit "C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils package" to Digg Submit "C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils package" to del.icio.us Submit "C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils package" to StumbleUpon Submit "C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils package" to Google Submit "C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils package" to Facebook Submit "C.F.U. - CPU Frequency Utility - Version 1.23 - For use with the cpufrequtils package" to Twitter

Updated 26-Mar-2013 at 18:55 by jdmcdaniel3

Categories
Technical Advice , openSUSE Software

Comments

  1. hank_se's Avatar
    From what I can see on my system, setting the governor to userspace, available speeds are in:

    /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
  2. jdmcdaniel3's Avatar
    Thanks so much for your help hank_se. After looking I do see the full frequencies listed there. All I need to do is switch how cfu picks up these numbers.

    Thank You,
  3. stamostolias's Avatar
    It works James. Thank you.
  4. tweakhound's Avatar
    Simply Outstanding!
  5. jdmcdaniel3's Avatar
    openSUSE 12.1 users, you may want to use cfu to set your CPU speed to PERFORMANCE if you don't like the ONDEMAND setting when using a desktop where speed is what you are after. It is possible to automatically run cfu each time you start up your PC. First, see the following blog on activating the /etc/init.d/after.local script:

    systemd and using the after.local script in openSUSE 12.1 - Blogs - openSUSE Forums

    Next, you need to install the cfu script if you have not alrady done so and allow the cpufrequtils to install if they are not already installed. Now, edit the after.local script (Alt-F2 in KDE):

    Code:
    kdesu kwrite /etc/init.d/after.local
    and add the following command:

    Code:
    cfu -s 5 q
    Now save the after.local file and reboot. This command will set your CPU speed to performance and exit each time you restart openSUSE. Use the terminal command cfu -h for more details.

    Thank You,
  6. jdmcdaniel3's Avatar
    C.F.U. - CPU Frequency Utility has been upgraded to Version 1.20. C.F.U. Now creates a KDE Desktop and Application icon for you. New settings at the top of the script control these actions. The C.F.U. color engine has been updated to work when no desktop has been loaded.

    Thank You,
  7. jdmcdaniel3's Avatar
    C.F.U. - CPU Frequency Utility has been updated to Version 1.22 to work with a slight change in how openSUSE 12.3 reports it release and to add more color to the CFU menu displays.

    Thank You,
  8. jdmcdaniel3's Avatar
    C.F.U. - CPU Frequency Utility has been updated to Version 1.23 to work with a slight change in how openSUSE 12.3 reports it release and to add even more color to the CFU menu displays.

    Thank You,

Search Engine Friendly URLs by vBSEO 3.5.2 PL2