提问人:felipe 提问时间:6/25/2023 更新时间:7/28/2023 访问量:1130
使用 ppa:ondrej Ubuntu 安装 PHP 5.6 的问题 18.04
Issue to install PHP 5.6 with ppa:ondrej Ubuntu 18.04
问:
日安:
我正在尝试在 Ubuntu 18.04 (LTS) x64 上安装带有 ppa:ondrej 的 PHP 5.6
一年前,它使用以下命令成功运行:
sudo add-apt-repository -y ppa:ondrej/php
sudo aptitude install -y php7.0 php5.6 php5.6-mysql php-gettext php5.6-mbstring php-mbstring php7.0-mbstring php-xdebug libapache2-mod-php5.6 libapache2-mod-php7.0
sudo a2dismod php7.0 ; sudo a2enmod php5.6 ; sudo service apache2 restart
sudo update-alternatives --set php /usr/bin/php5.6
- 我可能做错了什么?我该如何解决?
- 我需要升级到 Ubuntu 22.04 吗?
提前致谢, 菲 利 普
答:
1赞
felipe
6/30/2023
#1
当我升级到 Ubuntu 22.04 时,我可以安装 PHP 5.6.40。
有关更多详细信息,我首先修改了此文件:
/etc/needrestart/needrestart.conf
启用此项$nrconf{restart} = 'a';
然后我按照命令操作:
aptitude update
aptitude install -y php5.6
php -v
然后它成功了。
0赞
Afnan Ngathour Rahman
7/27/2023
#2
同样在这里,使用 ubuntu 18.04,无法安装 php5.6:
sudo apt install -y php5.6
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'php5.6-json' for regex 'php5.6'
Note, selecting 'php5.6-common' for regex 'php5.6'
0 upgraded, 0 newly installed, 0 to remove and 284 not upgraded.
sudo apt list | grep php5
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
php-symfony-polyfill-php54/bionic 1.6.0-2 all
php-symfony-polyfill-php55/bionic 1.6.0-2 all
php-symfony-polyfill-php56/bionic 1.6.0-2 all
编辑
我刚刚从 GitHub oerdnj/deb.sury.org 阅读了 Ubuntu 18.04 仿生标准支持终止的 ppa:ondrej。https://github.com/oerdnj/deb.sury.org/issues/1922
评论