美文网首页
Mac 系统禁用 ReportCrash 进程

Mac 系统禁用 ReportCrash 进程

作者: yoomaz | 来源:发表于2018-06-01 10:46 被阅读51次

晚上在 terminal 里敲代码,发现系统异常的卡顿。在 Activity Monitor 里发现 ReportCrash 进程占用了大量的 CPU,不断发送崩溃报告说明不断有进程在崩溃,
把这个 ReportCrash 禁用掉就好了

禁用命令:

launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist

重启方法:

launchctl load -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist

相关文章

网友评论

      本文标题:Mac 系统禁用 ReportCrash 进程

      本文链接:https://www.haomeiwen.com/subject/xzphsftx.html