In Ubuntu 13.10 on my (Dual Core i5 Lenovo G570) laptop, I recently discovered the wonders of indicator-cpufreq
, so I can extend my battery life dramatically by setting it to 'ondemand' or 'powersave' governor - here is the menu it shows:
I was wondering whether I could implement this in the other half other my dual boot on my laptop, Fedora 20. However, after looking at this documentation, and installing the kernel-tools
package, when I run the command to list the available modes.
On Fedora I get:
wilf@whm1:~$ cpupower frequency-info --governors
analyzing CPU 0:
powersave performance
On Ubuntu I get:
wilf@whm2:~$ cpupower frequency-info --governors
analyzing CPU 0:
conservative ondemand userspace powersave performance
So can I get the conservative
, ondemand
, & userspace
modes in Fedora?
Mainly the ondemand
one
Fedora System Info
Kernel
Linux whm1 3.12.10-300.fc20.i686+PAE #1 SMP Thu Feb 6 22:31:13 UTC 2014 i686 i686 i386 GNU/Linux
Version
Fedora release 20 (Heisenbug)
Kernel 3.12.10-300.fc20.i686+PAE on an i686
/proc/cpuinfo
, relevant /etc/default/grub
(Fedora manages Grub, not Ubuntu):
#GRUB_CMDLINE_LINUX="acpi_osi=Linux acpi_backlight=vendor pcie_aspm=force"
GRUB_CMDLINE_LINUX="vconsole.font=latarcyrheb-sun16 $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) rhgb quiet acpi_osi=Linux acpi_backlight=vendor pcie_aspm=force"
Ubuntu System Info
Kernel
Linux whm2 3.11.0-15-generic #25-Ubuntu SMP Thu Jan 30 17:25:07 UTC 2014 i686 i686 i686 GNU/Linux
/proc/cpuinfo
, relevant /etc/default/grub
(I think is loaded by Fedora Grub):
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""