如何让更新管理器不再唠叨新版本?

如何让更新管理器不再唠叨新版本?

我不想升级到新版本,也不想让有关升级的通知图标(带有感叹号的红色三角形)一直停留在托盘上。

答案1

  • 打开更新管理并点击设置。

在此处输入图片描述

  • 转到“更新”选项卡并将“显示新发行版本”更改为从不。

在此处输入图片描述

答案2

在“软件源”中,转到“更新”选项卡,并将“显示新发行版本”设置为“从不”,如下所示。我使用 Natty,但 Lucid 和 Maverick 也一样。

更新

答案3

你应该去软件中心-->编辑-->软件源

然后在第三个选项卡(更新)上转到“发布升级”(最后一个)并将其更改为“从不”

编辑:上面其他人所说的内容以及精彩的图片:D

答案4

如果您不想使用 GUI,在 Precise 中另一种方法是编辑 /etc/update-manager/release-upgrades:

# Default behavior for the release upgrader.

[DEFAULT]
# Default prompting behavior, valid options:
#
#  never  - Never check for a new release.
#  normal - Check to see if a new release is available.  If more than one new
#           release is found, the release upgrader will attempt to upgrade to
#           the release that immediately succeeds the currently-running
#           release.
#  lts    - Check to see if a new LTS release is available.  The upgrader
#           will attempt to upgrade to the first LTS release available after
#           the currently-running one.  Note that this option should not be
#           used if the currently-running release is not itself an LTS
#           release, since in that case the upgrader won't be able to
#           determine if a newer release is available.
Prompt=lts

然后将最后一行改为:

Prompt=never

相关内容