Mac 禁用一些高占用cup的进程

什么是CrashReporter?

CrashReporter在应用程序崩溃的任何时候都会运行,它旨在保存应用程序状态,以帮助开发人员找出应用程序崩溃原因。基本上,一个进程是启动、崩溃(并调用CrashReporter),然后重新启动,重复这个循环,永远不会结束。

如何识别崩溃的原因

为了显示哪个进程正在触发并停止此循环,CrashReporter的日志记录非常冗长,这使得查找有问题的应用程序变得更加容易。打开console.app(/Applications/Utilities/console.app)并查看system.log的末尾,查看哪个应用程序正在崩溃。

如何关掉 ReportCrash
这个操作会停止 ReportCrash 而且开机后,不会再次发生这个问题。

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


 
如何重新启用 ReportCrash  

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

————————————————

com.alipay.DispatcherService 是马云爸爸下的什么蛋?
知乎上说是阿里用来检测支付插件是否有新版本而启用的后台进程,水木上有个老帖子说是阿里在偷偷收集用户隐私。当然,我觉得第二种说法更可信。毕竟,检测是否有新版本你启动的时候再检测不行么?

禁用方法

sudo launchctl unload /Library/LaunchDaemons/com.alipay.DispatcherService.plist 
再次查看 system.log 会发现 alipay 的相关日志不再出现了。说明禁用成功。

为了以防万一,把电脑上的所有阿里的软件都卸载了(虽然只有阿里旺旺一个) 

————————————————

com.apple.nowplayingtouchui 跟 touch bar 有关?
Google 到的禁用方法

launchctl unload -w /System/Library/LaunchAgents/com.apple.touchbar.agent.plist 

———————————————— 

/Applications/wpsoffice.app/Contents/SharedSupport/wpscloudsvr.app/Contents/MacOS/wpscloudsvr

这个直接删除即可

rm -rf  
/Applications/wpsoffice.app/Contents/SharedSupport/wpscloudsvr.app/Contents/MacOS/wpscloudsvr

你可能感兴趣的:(mac)