Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Red Hat Enterprise Linux 9 Essentials Book now available.

Purchase a copy of Red Hat Enterprise Linux 9 (RHEL 9) Essentials

Red Hat Enterprise Linux 9 Essentials Print and eBook (PDF) editions contain 34 chapters and 298 pages

Preview Book

4.2. Example — Laptop

One other very common place where power management and savings can really make a difference are laptops. As laptops by design normally already use drastically less energy than workstations or servers the potential for absolute savings are less than for other machines. When in battery mode, though, any saving can help to get a few more minutes of battery life out of a laptop. Although this section focuses on laptops in battery mode, but you certainly can still use some or all of those tunings while running on AC power as well.
Savings for single components usually make a bigger relative difference on laptops than they do on workstations. For example, a 1 Gbit/s network interface running at 100 Mbits/s saves around 3–4 watts. For a typical server with a total power consumption of around 400 watts, this saving is approximately 1 %. On a laptop with a total power consumption of around 40 watts, the power saving on just this one component amounts to 10 % of the total.
Specific power-saving optimizations on a typical laptop include:
  • Configure the system BIOS to disable all hardware that you do not use. For example, parallel or serial ports, card readers, webcams, WiFi, and Bluetooth just to name a few possible candidates.
  • Dim the display in darker environments where you do not need full illumination to read the screen comfortably. Use System+PreferencesPower Management on the GNOME desktop, Kickoff Application Launcher+Computer+System Settings+AdvancedPower Management on the KDE desktop; or gnome-power-manager or xbacklight at the command line; or the function keys on your laptop.
  • Use the laptop-battery-powersave profile of tuned-adm to enable a whole set of power-saving mechanisms. Note that performance and latency for the hard drive and network interface are impacted.
Additionally (or alternatively) you can perform many small adjustments to various system settings:
  • use the ondemand governor (enabled by default in Red Hat Enterprise Linux 6)
  • enable laptop mode (part of the laptop-battery-powersave profile):
    echo 5 > /proc/sys/vm/laptop_mode
    
  • increase flush time to disk (part of the laptop-battery-powersave profile):
    echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
    
  • disable nmi watchdog (part of the laptop-battery-powersave profile):
    echo 0 > /proc/sys/kernel/nmi_watchdog
    
  • enable AC97 audio power-saving (enabled by default in Red Hat Enterprise Linux 6):
    echo Y > /sys/module/snd_ac97_codec/parameters/power_save
    
  • enable multi-core power-saving (part of the laptop-battery-powersave profile):
    echo 1 > /sys/devices/system/cpu/sched_mc_power_savings
    
  • enable USB auto-suspend:
    for i in /sys/bus/usb/devices/*/power/autosuspend; do echo 1 > $i; done
    
    Note that USB auto-suspend does not work correctly with all USB devices.
  • enable minimum power setting for ALPM (part of the laptop-battery-powersave profile):
    echo min_power > /sys/class/scsi_host/host*/link_power_management_policy
    
  • mount filesystem using relatime (default in Red Hat Enterprise Linux 6):
    mount -o remount,relatime mountpoint
    
  • activate best power saving mode for hard drives (part of the laptop-battery-powersave profile):
    hdparm -B 1 -S 200 /dev/sd*
    
  • disable CD-ROM polling (part of the laptop-battery-powersave profile):
    hal-disable-polling --device /dev/scd*
    
  • reduce screen brightness to 50 or less, for example:
    xbacklight -set 50
    
  • activate DPMS for screen idle:
    xset +dpms; xset dpms 0 0 300
    
  • reduce Wi-Fi power levels (part of the laptop-battery-powersave profile):
    for i in /sys/bus/pci/devices/*/power_level ; do echo 5 > $i ; done
    
  • deactivate Wi-Fi:
    echo 1 > /sys/bus/pci/devices/*/rf_kill
    
  • limit wired network to 100 Mbit/s (part of the laptop-battery-powersave profile):
    ethtool -s eth0 advertise 0x0F
    

 
 
  Published under the terms of the Creative Commons License Design by Interspire