Files
oam/knowledge base/lower the power consumption on linux.md
2023-07-09 20:48:18 +02:00

763 B

Lower the power consumption on Linux

Table of contents

  1. TL;DR
  2. Sources

TL;DR

echo '0' > '/proc/sys/kernel/nmi_watchdog'
echo 'med_power_with_dipm' > '/sys/class/scsi_host/host0/link_power_management_policy'

# Increase the virtual memory dirty writeback time to help aggregating disk I/O
# together. This reduces spanned disk writes.
# Value is in 1/100s of seconds. Default is 500 (5 seconds).
echo 6000 > '/proc/sys/vm/dirty_writeback_centisecs'
sudo sysctl vm.dirty_writeback_centisecs=6000

Sources