WebRTC_video_broadcasting

kubuntu-tutorial-hello-world-

cskimair 2017. 4. 25. 18:12

http://doc-kurento.readthedocs.io/en/stable/tutorials/node/tutorial-helloworld.html


<원문: orignal text> 

curl -sL https://deb.nodesource.com/setup | sudo bash -

sudo apt-get install -y nodejs

sudo npm install -g bower


<변경: text that I run > 

- in docker environment, so root is default user. I removed sudo in following commands. 

apt-get update   &&  apt-get install curl 

curl -sL https://deb.nodesource.com/setup_4.x | bash -

apt-get install -y nodejs

npm install -g bower


<before> 

git clone https://github.com/Kurento/kurento-tutorial-node.git

cd kurento-tutorial-node/kurento-hello-world

git checkout 6.6.0

npm install

npm start


<after>

apt-get install git 

git clone https://github.com/Kurento/kurento-tutorial-node.git

cd kurento-tutorial-node/kurento-hello-world

git checkout 6.6.0

npm install

npm start



<before> 

cd kurento-tutorial-node/kurento-hello-world

git checkout 6.6.0



<after> 

root@2999e618fa86:~# cd kurento-tutorial-node/kurento-hello-world

root@2999e618fa86:~/kurento-tutorial-node/kurento-hello-world# git checkout 6.6.0

Note: checking out '6.6.0'.


You are in 'detached HEAD' state. You can look around, make experimental

changes and commit them, and you can discard any commits you make in this

state without impacting any branches by performing another checkout.


If you want to create a new branch to retain commits you create, you may

do so (now or later) by using -b with the checkout command again. Example:


  git checkout -b <new-branch-name>


HEAD is now at fbf680a... Prepare release 6.6.0

root@2999e618fa86:~/kurento-tutorial-node/kurento-hello-world#