Reputation: 867
I am trying install Kurento Media Server. From installation guide in it's official website, I follow:
sudo add-apt-repository ppa:kurento/kurento
sudo apt-get update
sudo apt-get install kurento-media-server
Actually, the executing of last command line prompts up a message as below:
root@ubuntu:~/build# sudo apt-get install kurento-media-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package kurento-media-server is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package 'kurento-media-server' has no installation candidate
root@ubuntu:~/build#
I am using Ubuntu 14.10 (latest stable version).
Upvotes: 1
Views: 3350
Reputation: 1345
I use oficial docker image for it. Works in production, all fine. If you can use docker, get images of kurento here
One command, and kurento server starts
$ docker run --name kms -p 8888:8888 -d
kurento/kurento-media-server
Upvotes: 0
Reputation: 1956
Kurento Media Server Installation Kurento Media Server (KMS) has to be installed on Ubuntu 14.04 LTS (64 bits).
In order to install the latest stable Kurento Media Server version (6.0.0) you have to type the following commands, one at a time and in the same order as listed here. When asked for any kind of confirmation, reply affirmatively:
echo "deb http://ubuntu.kurento.org trusty 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
Take into account that if your are installing Kurento Media Server in Ubuntu Server 14.04, the tool add-apt-repository is not installed by default. To install it, run this command:
sudo apt-get install software-properties-common Now, Kurento Media Server has been installed and started. Use the following commands to start and stop it respectively:
sudo service kurento-media-server-6.0 start
sudo service kurento-media-server-6.0 stop
Upvotes: 0
Reputation: 867
Best and easiest way ( It works for me ) is running Kurento Media Server on Trusty..Ubuntu 14.02. I didn't see any alternation could help me run it on Utopic
Upvotes: 0
Reputation: 3541
Launchpad only has the deb package for Trusty. If you want to install kurento-media-server in Utopic, you'll have to add Kurento's own repository
sudo apt-add-repository http://ubuntu.kurento.org
wget -O - http://ubuntu.kurento.org/kurento.gpg.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install kurento-media-server
Upvotes: 3