Ubuntu 16.04 无法安装 Owncloud 服务器

Ubuntu 16.04 无法安装 Owncloud 服务器

我最近从 15.10 升级到了 16.04,这彻底破坏了我的 apache/wordpress/owncloud 安装。修复 wordpress 时,我删除了 owncloud。现在,如果我尝试安装 owncloud,我会收到以下错误:

    Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
 owncloud-server : Depends: php5 (>= 5.4.0) but it is not installable
                   Depends: php5-pgsql but it is not installable
                   Depends: php5-json but it is not installable
                   Depends: php5-ldap but it is not installable
                   Depends: php5-cli but it is not installable
                   Depends: php5-cgi but it is not installable
E: Unable to correct problems, you have held broken packages.

我正在从 owncloud 存储库为 Ubuntu 16.04 安装该软件包: http://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/

我在这里阅读了有关 16.04 升级破坏 owncloud 的文章: Ubuntu 16.04升级:授权问题

但是,我找不到解决方法。我想我只需要一些方法来欺骗 owncloud 使用 PHP7,但我不知道该怎么做。有人知道该怎么做吗?

答案1

您可以确保正在安装

sudo apt-get install owncloud owncloud-deps-php7.0 owncloud-files

也许只是install owncloud没有install owncloud-deps-php7.0

当我遇到您在此处链接的问题时...我安装的是 15.10 存储库,而不是 16.04 .. 当我尝试修复它时,没有 16.04。如果上述方法不起作用。我会尝试进入您的

/etc/apt/sources.list.d 

找到 owncloud 并将数字从 16.04 更改为 15.10 甚至 15.04,然后

sudo apt-get update 

然后尝试安装

sudo apt-get install owncloud-files

首先,如果不起作用,请尝试安装

sudo apt-get install owncloud  

如果可以这样安装,安装后我会返回并将你的 owncloud.list 重新更新到 16.04 并再次执行 apt-get update,然后查看是否有更新并尝试更新

相关内容