Archive for the ‘Slackware’ Category

Double the time for laptop running on battery

January 17th, 2012 | admin

Tested under Mandriva&OpenSuse&Slackware, all works well.

$sudo zypper install powertop
$sudo zypper install  laptop-mode-tools
$sudo zypper install cpufrequtils

also check out cpufreq-utils
http://forums.opensuse.org/blogs/jdm…ls-package-40/

Thanks, quota for remark see following:

 

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.

Version 1.10 of C.F.U. (works with openSUSE 12.1) 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

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.10

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):

rm ~/bin/cfu
wget -nc http://paste.opensuse.org/view/download/72458191 -O ~/bin/cfu

This script must be marked executable to be used. Please run the following Terminal command:

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:

rm ~/bin/cfu ; wget -nc http://paste.opensuse.org/view/download/72458191 -O ~/bin/cfu ; chmod +x ~/bin/cfu

To use cfu, open a terminal session and type in:

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,