Created
April 15, 2021 09:14
-
-
Save lombax85/e25d331c063da83c5060693cada1a54f to your computer and use it in GitHub Desktop.
Powernap on M1 and Big Sur
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
# check wake requests | |
pmset -g log | grep "Wake Requests" | |
# check wake logs | |
pmset -g log | grep darkwake | |
# statistics | |
pmset -g stats | |
# check if powernap is enabled | |
sudo pmset -g | |
# log battery usage | |
➜ ~ pmset -g log | |
PM ASL data store: /var/log/powermanagement | |
# disable powernap | |
1.Run command in terminal: sudo pmset -a tcpkeepalive 0 | |
2.Run command in terminal: sudo pmset -a powernap 0 | |
# references | |
https://discussions.apple.com/thread/252061187?page=1 | |
I've found out an easier way to sovle this issue: | |
1.Run command in terminal: sudo pmset -a tcpkeepalive 0 | |
2.Run command in terminal: sudo pmset -a powernap 0 | |
3.Make sure these options is not checked: "System Preferences->Battery->Optimized battery charging" and "System Preferences->Battery->Power Adapter->Wake for network access" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, and thanks for the follow up link!