在运行 ps aux
命令时偶然发现 GoogleUpdater ,我更倾向于手动管理更新。所以决定禁用它,步骤如下:
打开终端,输入以下命令来删除 Google Software Update:
sudo rm -rf /Library/Google/GoogleSoftwareUpdate
再删除自动启动的服务:
sudo rm -rf /Library/LaunchAgents/com.google.keystone.agent.plist
sudo rm -rf /Library/LaunchDaemons/com.google.keystone.daemon.plist
在终端中设置更新间隔为 0
,彻底禁用后台自动更新:
defaults write com.google.Keystone.Agent checkInterval 0
用 launchctl
查看并停止 Google 的更新服务:
launchctl list | grep google
sudo launchctl unload -w /Library/LaunchAgents/com.google.keystone.agent.plist
sudo launchctl unload -w /Library/LaunchDaemons/com.google.keystone.daemon.plist