Não é possível instalar o ownCloud no Ubuntu 16.04

3

Eu recebo os seguintes erros ao tentar instalar o 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.

Como corrijo isso?

    
por Randy Shimizu 19.06.2016 / 21:27

2 respostas

1

Existe um fork do Owncloud chamado Nextcloud , e é a versão que é melhor suportada. Eu recomendo usar Nextcloud .

No Ubuntu 16.04 você pode instalar o Nextcloud como um instantâneo (o novo tipo de pacotes de instalação para o Ubuntu 16.04 ou mais recente).

A documentação completa sobre como experimentar a edição instantânea do Nextcloud pode ser encontrada em link

    
por user4124 04.03.2017 / 11:32
0

Faça o seguinte no terminal:

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

Espero que agora o problema de dependência seja resolvido

Agora, para instalar o tipo owncloud no terminal

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

Para instalar o tipo de arquivos owncloud no terminal

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

NOTA : Isso funcionará apenas no Ubuntu 16.04

Para o Ubuntu 15.10

Para instalar o tipo owncloud no terminal

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

Para instalar o tipo de arquivos 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

Para o Ubuntu 14.04

Para instalar o tipo 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

Para instalar o tipo 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

No Ubuntu 12.04

Para instalar o tipo 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

Para instalar o tipo 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
    
por rancho 19.06.2016 / 23:41