安装 curl debian squeeze 时出错

安装 curl debian squeeze 时出错

我已经设置了 [ISPconfig][1] 服务器,现在正在尝试安装 curl。我正在使用 apt-get 安装 php5-curl,但它似乎抛出了错误。

在我按“y”接受安装后,屏幕显示

php5 (5.3.3-7+squeeze5) squeeze-security; urgency=high

  * The following new directives were added as part of security fixes:
    - max_input_vars - specifies how many GET/POST/COOKIE input variables
      may be accepted.  Default value is set to 1000.
    - xsl.security_prefs - define forbidden operations within XSLT
      stylesheets.  Write operations are now disabled by default.

 -- Ondřej Surý <[email protected]>  Mon, 23 Jan 2012 12:22:26 +0100

php5 (5.3.3-7+squeeze4) squeeze-security; urgency=low

  * Updated blowfish crypt() algorithm fixes the 8-bit character handling
    vulnerability (CVE-2011-2483) and adds more self-tests.  Unfortunately
    this change is incompatible with some old (wrong) generated hashes for
    passwords containing 8-bit characters.  Therefore the new salt prefix
    '$2x$' was introduced which can be used as a replacement for '$2a$'
    salt prefix in the password database in case the incompatibility is
    found.

 -- Ondřej Surý <[email protected]>  Mon, 04 Jul 2011 10:31:16 +0200

/tmp/tmp93fjeS

请帮助我,告诉我该怎么做。

答案1

这不是错误。这是因为您安装了 apt-listchanges 包,并且该包向您显示了您正在接收的 php5 安全升级的变更日志。如果您不想在升级包时查看包中发生了哪些更改,您可以删除 apt-listchanges 包。

如果您询问如何关闭此更改日志,请按“q”退出正在显示的寻呼机。

此外,如果您现在才获得去年 7 月发布的 php5 安全升级,那么您肯定应该更频繁地执行安全升级。 apt-get update ; apt-get upgrade或者aptitude update ; aptitude safe-upgrade会执行这些升级。您可以考虑安装cron-apt可以在安全升级可用时向您发送电子邮件的软件包,或者订阅Debian 安全公告邮件列表,这是一个用于宣布这些安全升级的低流量邮件列表

相关内容