web-dev-qa-db-ja.com

ownCloudをubuntu 16.04にインストールできません

OwnCloudをインストールしようとすると、次のエラーが表示されます。

The following information may help to resolve the situation:

The following packages have unmet dependencies:  owncloud : Depends:
owncloud-server (= 8.1.8-12.1) but it is not going to be installed
            Recommends: mysql-server but it is not installable or
                        mariadb-server but it is not installable
            Recommends: exim4 but it is not installable or
                        mail-transport-agent but it is not installable
            Recommends: owncloud-config-Apache (= 8.1.8-12.1) but it is not 
going to be installed
E: Unable to correct problems, you haveheld broken packages.

どうすれば修正できますか?

3
Randy Shimizu

Nextcloudと呼ばれるOwncloudのフォークがあり、これがよりよくサポートされているバージョンです。代わりにNextcloudを使用することをお勧めします。

Ubuntu 16.04では、Nextcloudをスナップとしてインストールできます(Ubuntu 16.04以降の新しいタイプのインストールパッケージ)。

Nextcloudのスナップエディションの試用方法に関する完全なドキュメントは、 https://github.com/nextcloud/nextcloud-snap にあります。

1
user4124

ターミナルで次の手順を実行します。

Sudo dpkg --configure -a
Sudo apt-get autoremove --purge
Sudo apt-get autoclean --purge
Sudo apt-get -f install
Sudo apt-get update
Sudo apt-get ugrade
Sudo apt-get dist-upgrade

うまくいけば、依存関係の問題が解決されることを願っています

ターミナルにowncloudタイプをインストールする

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud

ターミナルにowncloudファイルを入力するには

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud-files

注意:これはでのみ動作します Ubuntu 16.04

にとって Ubuntu 15.10

ターミナルにowncloudタイプをインストールするには

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_15.10/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_15.10/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud

Owncloudファイルをインストールするには、次のように入力します。

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_15.10/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_15.10/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud-files

にとって Ubuntu 14.04

Owncloudタイプをインストールするには

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_14.04/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud

Owncloud-filesをインストールするには、次を入力します。

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_14.04/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud-files

に Ubuntu 12.04

Owncloudタイプをインストールするには

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_12.04/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_12.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud

Owncloud-filesタイプをインストールするには

wget -nv https://download.owncloud.org/download/repositories/stable/Ubuntu_12.04/Release.key -O Release.key
apt-key add - < Release.key
sh -c "echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_12.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
apt-get update
apt-get install owncloud-files
0
rancho