解决 MacBook 盒盖耗电问题

2024-01-08 20:20:54 浏览数 (1)

解决 MacBook 盒盖耗电问题

重置 SMC

  • 如果问题仍然存在,请重置 SMC:
  1. 将 Mac 关机。
  2. 在内建键盘上,按住以下所有按键。Mac 可能会开机。
  • Control No alt supplied for Image:位于键盘左侧
  • Option (Alt) No alt supplied for Image:位于键盘左侧
  • Shift No alt supplied for Image:位于键盘右侧

按住这三个按键 7 秒钟,然后在不松开这些按键的情况下按住电源按钮。如果 Mac 处于开机状态,它将在你按住这些按键时关机。

通过重置 SMC,可以解决某些与电源、电池、风扇和其他功能相关的问题。本文仅适用于配备 Intel 处理器的 Mac 电脑。

查看 Wake 程序, 删除 定时任务

代码语言:javascript复制
pmset -g log|grep -e "sleep" -e "wake" -e "wake request" -e "waketime"

看到有如下:

代码语言:javascript复制
2024-01-07 09:11:44  0800 Assertions           PID 83447(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context373.preventuseridledisplaysleep" 36:43:28  id:0x0x500009c9a [System: DeclUser kDisp]
2024-01-07 09:11:44  0800 Assertions           PID 83447(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context373.preventuseridlesleep" 36:43:28  id:0x0x100009c88 [System: DeclUser kDisp]
2024-01-07 09:11:44  0800 Assertions           PID 83447(coreaudiod) Released PreventUserIdleDisplaySleep "com.apple.audio.context374.preventuseridledisplaysleep" 36:43:28  id:0x0x500009c8f [System: DeclUser kDisp]
2024-01-07 09:11:44  0800 Assertions           PID 83447(coreaudiod) Released PreventUserIdleSystemSleep "com.apple.audio.context374.preventuseridlesleep" 36:43:28  id:0x0x100009c84 [System: DeclUser kDisp]
代码语言:javascript复制
pmset -g sched
 
sudo pmset schedule cancelall

pmset -g sched
结果为空,定时任务已删除

0 人点赞