Não é possível instalar o Kurento Media Server no Ubuntu 16.10

1

Estou tentando instalar o Kurento Media Server 6 no ubuntu 16.10 e na etapa final dos documentos de instalação estou obtendo um erro como ...

$ sudo apt-get install kurento-media-server-6.0
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:
 kurento-media-server-6.0 : Depends: kms-core-6.0 (>= 6.6.1) but it is not going to be installed
                            Depends: libboost-filesystem1.58.0 but it is not installable
                            Depends: libboost-log1.58.0 but it is not installable
                            Depends: libboost-program-options1.58.0 but it is not installable
                            Depends: libboost-system1.58.0 but it is not installable
                            Depends: libboost-thread1.58.0 but it is not installable
                            Depends: gstreamer1.5-plugins-bad (>= 1.7.0~0) but it is not going to be installed
                            Depends: gstreamer1.5-plugins-good (>= 1.7.0~0) but it is not going to be installed
                            Depends: kms-elements-6.0 (>= 6.6.1) but it is not going to be installed
                            Depends: kms-filters-6.0 (>= 6.6.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Como consertar isso ??

    
por TRomesh 10.04.2017 / 06:45

1 resposta

3

Você precisa mudar a fonte para o Ubuntu 16 install 14por padrão: trusty - > xenial

echo "deb http://ubuntu.kurento.org **xenial** kms6" | sudo tee /etc/apt/sources.list.d/kurento.list
wget -O - http://ubuntu.kurento.org/kurento.gpg.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install kurento-media-server-6.0

Espero que isso ajude você!

Bgs,

    
por Vương Huỳnh Văn 09.05.2017 / 05:07