-1

我下载了 Google App Engine 安装程序并安装了 GAE。现在我收到一个定期弹出窗口,询问我是否要更新它。好像没有什么办法可以关掉。

这个东西是如何与我的操作系统挂钩的?

bash-3.2# pwd
/usr/lib/cron/tabs
bash-3.2# ls -la
total 0
drwx------  2 root    wheel   68 May 18  2009 .
drwxr-xr-x  8 daemon  wheel  272 Sep  4  2011 ..
bash-3.2# 

没有。

$ ls /etc/crontab
ls: /etc/crontab: No such file or directory

没有。

它似乎不是 cron 唤醒它。关于如何关闭它的任何想法?

4

1 回答 1

2

它使用launchd来安排更新。它的配置文件应该在您用户的 LaunchAgents 目录 ( ~/Library/LaunchAgents/) 中。可以通过修改 plist 文件以添加禁用键来禁用它(而不是仅仅删除整个东西):

open ~/Library/LaunchAgents/com.google.keystone.agent.plist

然后添加禁用键:

<key>Disabled</key>
<true/>
于 2013-08-27T19:50:31.163 回答