从 5.5.9-1ubuntu4.22 升级到 PHP 5.6.0

从 5.5.9-1ubuntu4.22 升级到 PHP 5.6.0

我有一个问题,我想找人帮我,我有 ubuntu server 14,我的服务器上有 php5 用于安装 owncloud,但是,当我进入页面时,它说我需要从 5.5.9 升级到至少 php.5.6.0,所以我试着把这个

sudo apt-get -y update
sudo add-apt-repository ppa:ondrej/php
sudo apt-get -y update
sudo apt-get -y install php5.6 php5.6-mcrypt php5.6-mbstring php5.6-curl php5.6-cli php5.6-mysql php5.6-gd php5.6-intl php5.6-xsl php5.6-zip
php -v

但是当我输入 sudo add-apt-repository ppa:ondrej/php 时,它说没有找到命令,如果我尝试输入

sudo apt-get -y install php5.6 php5.6-mcrypt php5.6-mbstring php5.6-curl php5.6-cli php5.6-mysql php5.6-gd php5.6-intl php5.6-xsl php5.6-zip

未找到:以及我输入的所有名称。我该怎么办?

这里有一张上面写着的内容的照片:

答案1

要获取add-apt-repository命令,您需要安装软件属性:

sudo apt-get install software-properties-common python-software-properties

相关内容