Revisión de Optimizando el consumo eléctrico de tu computadora de Mar, 01/14/2014 - 17:01

La revisión le permite rastrear las diferencias que hay entre distintas versiones de una entrada.

Esta wiki tiene trucos para reducir el consumo eléctrico de tu computadora. Si estas usando un portátil, esto te ayudara a aumentar la vida de tu batería.

He probado estos trucos en una portátil corriendo Trisquel 6. Trisquel 6 esta basada en Ubuntu 12.04

Consejos y Trucos

  • Suspende el sistema cuando no lo estés usando.
  • En BIOS/UEFI, deshabilita cualquier dispositivo que no planees usar, tales como:
    • Bluetooth
    • Redes inalámbricas, como WiMAX, Wireless WAN o 3G
    • El trackpad (en un portátil).
    • Deshabilitar la opción de wake-on-lan --que monitoriza el puerto LAN-- ahorraría 1W.
    • Hasta ahora, con todo estos dispositivos, podrías ahorrar hasta 2W de potencia, dependiendo de tu sistema.
  • Consulta tus estadísticas de consumo eléctrico con el comando gnome-power-statistics.
  • Selecciona en la gestión de energía que tu pantalla reduzca el brillo después de un tiempo de inactividad. Esto puede hacerse desde el menú Trisquel -> Configuración del sistema -> Brillo y bloqueo. Cambia el "Apagar la pantalla cuando este inactiva por:" el tiempo deseado.
  • Desactiva el Bluetooth/WiFi cuando no lo estés usando durante un largo periodo. Tu computadora puede tener interruptores físicos o lógicos para esta función.
  • Los disco duro SSD gastan menos electricidad que las unidades de disco duro que tienen partes mecánicas.
  • Deshabilita la tarjeta de sonido.
    • Click izquierdo en el altavoz de la barra de tareas y elije "Configuración de sonido".
    • En la pestaña "Hardware", haz click en tu tarjeta de sonido y después selecciona en el perfil "Apagado".
    • Te habrás ahorrado alrededor de 2W, mas de un 5% de batería.

Useful Packages

  • Linux-libre (homepage): Upgrade your kernel to latest Linux-libre. There are two PPAs making this available (based on a forum discussion about both):
    • Linux-libre Package Team PPAs (PPA, test): specific for Ubuntu-based distributions;
    • a PPA maintained by jxself: targeting any Debian-based distro.
  • laptop-mode-tools (homepage) : Tools for Power Savings based on battery/AC status
    Laptop mode is automatically enabled after installing this package. Check the ArchLinux extensive documentation about this.
  • powertop (homepage) - tool to find out what is using power on a laptop
  • rovclock - utility to control frequency rates of your Radeon card
    Check the Thinkwiki rovclock documentation about this package
  • If you use a HDD, put your Abrowser profile on a ramdisk to avoid spinning the platter. Trisquel comes automatically with a ramdisk at /dev/shm. Note that the ramdisk is volatile, you might want to backup the profile before restarting/shutting down.

Blacklist kernel modules

Do you never or seldom use things like Bluetooth, the SD card reader, a joystick or your sound card? Disable the corresponding kernel modules by adding to /etc/modprobe.d/blacklist.conf
blacklist bluetooth
blacklist firewire_core (FireWire, or IEEE 1394)
blacklist firewire_ohci
blacklist yenta_socket
blacklist joydev
blacklist sdhci (SD card)
blacklist sdhci_pci
blacklist dm_crypt
blacklist tifm_7xx1
blacklist shpchp
blacklist btrfs
Now, run sudo update-initramfs -u and restart. You can find out what modules are loaded using the lsmod command. If you want a very terse info about a module, you can sudo modinfo modulename. These modules might get automatically loaded when actually needed or if not, you can sudo modprobe modulename to insert.

Remove excess VTs

Do you use virtual terminals 3-6? I don't, so I got rid of them by removing /etc/init/tty3.conf ... /etc/init/tty6.conf then I rebooted.

Runtime PM

When you run powertop you may notice that many devices have runtime power management disabled. You can enable them all by echoing auto to their control files as super user, e.g. in a startup script. You can find a list of such files with ls /sys/bus/{pci,i2c}/devices/*/power/control

PCIe ASPM

Some newer hardware and BIOSes support PCIe active state power management. You can check dmesg|grep -i aspm to see how your system is doing. You can try forcing it by adding to grub configuration, on the kernel line pcie_aspm=force and then running update-grub and rebooting. Watch out for hangs.

References and useful links

Revisiones

01/14/2014 - 17:01
ljpaez