我不得不在我的服务器上进行Debian dist-upgrade …在此过程中,PHP升级到5.4.我们使用的离子立方体只能支持5.3个大气压,而我在找到如何从5.4降级到5.3时遇到了一些麻烦.谁知道怎么样?
上述两种解决方案都不适合我.做了什么工作将必要的包裹固定在旧的马厩上
原文链接:https://www.f2er.com/php/139393.htmldeb http://ftp.us.debian.org/debian/ squeeze main contrib non-free deb-src http://ftp.us.debian.org/debian/ squeeze main contrib non-free
创建
/etc/apt/preferences.d/preferences
并添加您需要降级的软件包,例如在我的情况下
Package: PHP5* Pin: release a=oldstable Pin-Priority: 700 Package: libapache2-mod-PHP5 Pin: release a=oldstable Pin-Priority: 700 Package: libapache2-mod-PHP5 Pin: release a=oldstable Pin-Priority: 700 Package: PHP-pear Pin: release a=oldstable Pin-Priority: 700 Package: * Pin: release a=stable Pin-Priority: 600
然后运行命令
aptitude update aptitude reinstall <necessary packages> /etc/init.d/apache2 restart
如果您想知道需要升级的软件包,请运行:
dpkg -l|grep PHP|grep 5.4|awk '{print $2}'