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
Code:
chmod +x ~/bin/cfu
Code:
rm ~/bin/cfu ; wget -nc http://paste.opensuse.org/view/download/92162247 -O ~/bin/cfu ; chmod +x ~/bin/cfu
Code:
cfu <OR> cfu -h
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
Message