Guest User

Untitled

a guest
Oct 21st, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. apt install powertop
  2. powertop --auto-tune
  3. # install as a service:
  4. cat << EOF | sudo tee /etc/systemd/system/powertop.service
  5. [Unit]
  6. Description=PowerTOP auto tune
  7.  
  8. [Service]
  9. Type=idle
  10. Environment="TERM=dumb"
  11. ExecStart=/usr/sbin/powertop --auto-tune
  12.  
  13. [Install]
  14. WantedBy=multi-user.target
  15. EOF
  16. systemctl daemon-reload
  17. systemctl enable powertop.service
Add Comment
Please, Sign In to add comment