Problema de dependência com a instalação do Owncloud

1

De acordo com o manual Seafile , eu tento uma instalação Owncloud no Ubuntu 14.04 com

apt-get install update
apt-get install owncloud

Eu tenho um problema de dependência e estou preso.

Reading package lists... Building dependency tree... Reading state information... 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 : Depends: owncloud-server (= 8.1.1-1) but it is not going to be installed Depends: owncloud-config-apache (= 8.1.1-1) but it is not going to be installed Recommends: curl but it is not going to be installed E: Unable to correct problems, you have held broken packages.

Eu preciso de ajuda para me guiar!

    
por Dubser 27.08.2015 / 19:21

2 respostas

2

comando de execução

sudo apt-get -f install

tente instalar o owncloud usando

sudo apt-get install owncloud

ou

se não funcionar, adicione o repositório

sudo sh -c "echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/community/xUbuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud.list"
wget http://download.opensuse.org/repositories/isv:ownCloud:community/xUbuntu_14.04/Release.key
sudo apt-key add - < Release.key
sudo apt-get update
sudo apt-get install owncloud

ou

instale manualmente usando

sudo apt-get install apache2 php5 php5-mysql mysql-server
sudo apt-get install php5-gd php5-json php5-curl php5-intl php5-mcrypt php5-imagick

faça o download do owncloud e extraia-o para /var/www/html/

wget https://download.owncloud.org/community/owncloud-8.0.0.tar.bz2
tar -xvf owncloud-8.0.0.tar.bz2 -C /var/www/html/

altere a propriedade usando

chown www-data:www-data -R /var/www/html/owncloud/

também crie um banco de dados para o owncloud

    
por pl_rock 27.08.2015 / 19:41
0

Obrigado pela resposta, mas encontro a solução antes de lê-la. Desinstala o curl com o apt-get remove curl. Do que eu passo autoremove o apt-get, eu reinstaloi o curl e depois o everyting ficou bom com o apt-get install owncloud.

Resolvido

Muito obrigado pelo apoio

    
por Dubser 28.08.2015 / 01:56