Created
August 29, 2015 07:22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/udev/rules.d/50-network-powersave.rules | |
# vim: ft=udevrules | |
ACTION=="add", SUBSYSTEM=="net", KERNEL=="eth*", RUN+="/usr/bin/ethtool -s %k wol d" | |
ACTION=="add", SUBSYSTEM=="net", KERNEL=="wlan*", RUN+="/usr/sbin/iw dev %k set power_save on" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/udev/rules.d/50-pci-powersave.rules | |
# vim: ft=udevrules | |
ACTION=="add", SUBSYSTEM=="pci", ATTR{power/control}="auto" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/udev/rules.d/50-sata-powersave.rules | |
# vim: ft=udevrules | |
ACTION=="add", SUBSYSTEM=="scsi_host", ATTR{link_power_management_policy}="min_power" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/modprobe.d/powersave.conf - powersaving settings | |
# vim: ft=modconf | |
options snd-hda-intel power_save=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment