如何在ubuntu 9.04下卸载php 5.3

发布于 2024-10-11 05:01:37 字数 213 浏览 1 评论 0原文

我怎样才能完全卸载 php 5.3

我想用 5.2.10 代替。

当我执行 php -v
PHP 5.3.4 (cli)(构建时间:2010 年 12 月 28 日 17:00:24)
版权所有 (c) 1997-2010 PHP 集团
Zend Engine v2.3.0,版权所有 (c) 1998-2010 Zend Technologies

How can I completely uninstall php 5.3

I would like to have 5.2.10 instead of.

When I do php -v
PHP 5.3.4 (cli) (built: Dec 28 2010 17:00:24)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚风撩人 2024-10-18 05:01:37

你是如何在这个旧版本的 Ubuntu 中使用如此最新版本的 php 的呢?您可以升级到包含 php 5.2.10 的 Karmic (9.10) (http://packages.ubuntu.com/search?keywords=php5&searchon=names&suite=all§ion=all)

否则:
设置 apt-pinning 以允许从 karmic 存储库安装软件包。首先,在 etc/apt/sources.list 中添加 karmic 存储库(它与您当前的存储库相同,只需复制它们并替换发布名称)。然后编辑 /etc/apt/preferences :
例如,这应该有效:

Package: *
Pin: release a=(9.04 name)
pin-Priority: 700

Package: *
pin: release a=karmic
Pin-Priority: 500

删除所有已安装的 php 软件包(使用 synaptic)。然后你可以这样做:

apt-get install -t karmic (php pagkages)

但是要小心 php 的任何依赖项,以免破坏系统中的其他内容。

How did you end up with such a recent version of php in this old version of Ubuntu? You could upgrade to Karmic (9.10) that includes php 5.2.10 (http://packages.ubuntu.com/search?keywords=php5&searchon=names&suite=all§ion=all)

Otherwise:
Set up apt-pinning to allow installing packages from the karmic repository as well. First, add the karmic repositories in etc/apt/sources.list (it's the same as your current repositories, just copy them and replace the release name). Then edit /etc/apt/preferences :
For example this should work:

Package: *
Pin: release a=(9.04 name)
pin-Priority: 700

Package: *
pin: release a=karmic
Pin-Priority: 500

Remove any php packages installed (using synaptic). Then you can do:

apt-get install -t karmic (php pagkages)

But be careful with any dependancies of php in order not to break something else in your system.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文