Mozi (@yeahhe)macOS 27 Beta 2 高 CPU 占用修复指南 中发帖

问题症状

appstoreagent 进程 CPU 占用 80-160%
dasd 进程同步高占用
系统发热、风扇狂转、电量消耗快

原因
macOS 27 Beta 2 的 Apple Arcade 数据库 schema 回归 bug,导致 appstoreagent 无限重试循环。 
修复方法
打开终端,依次执行: 
killall -9 appstoreagent

rm -rf ~/Library/Caches/com.apple.appstoreagent 
rm -rf ~/Library/Caches/com.apple.appstore 
cd "$(getconf DARWIN_USER_DIR)" && rm -rf com.apple.appstoreagent com.apple.appstore 
killall -9 appstoreagent 
执行后立即重...
 
 
Back to Top