libreplan: Depende: tomcat6 mas não será instalado

1

Eu tentei instalar o Libreplan, em um sistema de servidor 14.04, usando as etapas do site do Libreplan e este guia .

Eu posso adicionar o PPA sem problemas, mas quando eu uso o comando sudo apt-get install libreplan , recebo a seguinte mensagem de erro.

Reading package lists... Done
Building dependency tree
Reading state information... Done
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.
 libreplan : Depends: tomcat6 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

A instalação do tomcat6 resolverá isso e, em caso afirmativo, ele poderá ser instalado ao lado do tomcat7? Ou há outro problema aqui que eu não conheço?

Editar: Não recebi mensagens de erro de sudo apt-get update ou sudo apt-get dist-upgrade

Aqui está a mensagem de erro gerada por sudo apt-get install libreplan

Reading package lists... Done
Building dependency tree
Reading state information... Done
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.
 tomcat6 : Depends: tomcat6-common (>= 6.0.39-1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
    
por Arronical 18.12.2015 / 15:00

2 respostas

0

sudo apt-get install libtomcat6-java 
sudo apt-get install tomcat6

Isso pode resolver seu problema. Você também pode instalar o tomcat6 mesmo que já tenha o tomcat7 instalado.

    
por Adinarayana Immidisetti 13.04.2016 / 14:35
0

Sim, você pode e deve instalar o pacote tomcat6 ao lado de tomcat7 para solucionar seu problema. Ambos os pacotes podem ser instalados em paralelo.

Mas o pacote deve ser instalado automaticamente. Eu suspeito que você tenha mais problemas.

Por esse motivo, execute

sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install tomcat6

e adicione as mensagens de erro à sua pergunta.

    
por A.B. 18.12.2015 / 15:06